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

com.novocode.junit.EmptyRunner Maven / Gradle / Ivy

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