com.novocode.junit.EmptyRunner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of junit-interface Show documentation
Show all versions of junit-interface Show documentation
An implementation of sbt's test interface for JUnit 4
The newest version!
package com.novocode.junit;
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 - 2025 Weber Informatics LLC | Privacy Policy