Package org.junitext.runner

Source Code of org.junitext.runner.AnnotationHandlingRequest

/*******************************************************************************
* Copyright (C) 2006-2007 Jochen Hiller and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License - v 1.0
* which accompanies this distribution, and is available at
* http://junitext.sourceforge.net/licenses/junitext-license.html
*
* Contributors:
*     Jochen Hiller - initial API and implementation
******************************************************************************/
package org.junitext.runner;

import org.junit.internal.runners.InitializationError;
import org.junit.runner.Request;
import org.junit.runner.Runner;
import org.junit.runner.manipulation.Filter;
import org.junitext.runners.AnnotationRunner;

/**
* Request which supports annotation handling of test cases.
*/
public class AnnotationHandlingRequest {

  public static Request aClass(final Class<?> clazz) {
    return new Request() {

      @Override
      public Runner getRunner() {
        try {
          return new AnnotationRunner(clazz);
        } catch (InitializationError e) {
          return Request.errorReport(Filter.class, new Exception(String
              .format("Error creating AnnotationHandler for class %s ", clazz.getName()
                  ))).getRunner();
        }
      }
    };
  }
}
TOP

Related Classes of org.junitext.runner.AnnotationHandlingRequest

TOP
Copyright © 2018 www.massapi.com. 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.