Package org.junit.internal.runners

Examples of org.junit.internal.runners.TestClassMethodsRunner


// TODO: better factoring here
public class CustomRunnerTest {
  public static class CustomRunner extends TestClassRunner {
    public CustomRunner(Class<?> klass) throws InitializationError {
      super(klass, new TestClassMethodsRunner(klass) {
        @Override
        protected TestMethodRunner createMethodRunner(Object test, Method method, RunNotifier notifier) {
          return new TestMethodRunner(test, method, notifier,
              methodDescription(method)) {
            @Override
View Full Code Here

TOP

Related Classes of org.junit.internal.runners.TestClassMethodsRunner

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.