All Downloads are FREE. Search and download functionalities are using the official Maven repository.

munit.internal.junitinterface.EmptyRunner Maven / Gradle / Ivy

There is a newer version: 1.0.0
Show newest version
package munit.internal.junitinterface;

import org.junit.runner.Description;
import org.junit.runner.Runner;
import org.junit.runner.notification.RunNotifier;

class EmptyRunner extends Runner {

  private final Description desc;

  EmptyRunner(Description desc) { this.desc = desc; } 

  @Override
  public Description getDescription() { return desc; }

  @Override
  public void run(RunNotifier notifier) {}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy