当前位置: 首页>>代码示例>>Java>>正文


Java TestClass.getAnnotatedMethods方法代码示例

本文整理汇总了Java中org.junit.runners.model.TestClass.getAnnotatedMethods方法的典型用法代码示例。如果您正苦于以下问题:Java TestClass.getAnnotatedMethods方法的具体用法?Java TestClass.getAnnotatedMethods怎么用?Java TestClass.getAnnotatedMethods使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在org.junit.runners.model.TestClass的用法示例。


在下文中一共展示了TestClass.getAnnotatedMethods方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: getParameterizations

import org.junit.runners.model.TestClass; //导入方法依赖的package包/类
/**
 * Gets the parameterization
 * @return the parameterization collection
 * @throws Throwable if the annotation requirements are not met, or if there's an error in invoking
 * the class's "get parameterizations" method.
 */
private Collection<Parameterization> getParameterizations() throws Throwable
{
    TestClass cls = getTestClass();
    List<FrameworkMethod> methods = cls.getAnnotatedMethods(TestParameters.class);

    if (methods.size() != 1)
    {
        throw new Exception("class " + cls.getName() + " must have exactly 1 method annotated with "
            + TestParameters.class.getSimpleName() +"; found " + methods.size());
    }

    FrameworkMethod method = methods.get(0);
    checkParameterizationMethod(method);

    @SuppressWarnings("unchecked")
    Collection<Parameterization> ret = (Collection<Parameterization>) method.invokeExplosively(null);
    checkParameterizations(ret);
    return ret;
}
 
开发者ID:jaytaylor,项目名称:sql-layer,代码行数:26,代码来源:NamedParameterizedRunner.java

示例2: explode

import org.junit.runners.model.TestClass; //导入方法依赖的package包/类
static List<Runner> explode(Class<?> cls) throws InitializationError {
  checkNotNull(cls, "cls");

  TestClass testClass = new TestClass(cls);
  List<FrameworkMethod> testMethods = testClass.getAnnotatedMethods(Test.class);

  List<FrameworkMethod> burstMethods = new ArrayList<>(testMethods.size());
  for (FrameworkMethod testMethod : testMethods) {
    Method method = testMethod.getMethod();
    for (Enum<?>[] methodArgs : Burst.explodeArguments(method)) {
      burstMethods.add(new BurstMethod(method, methodArgs));
    }
  }

  TestConstructor constructor = BurstableConstructor.findSingle(cls);
  Enum<?>[][] constructorArgsList = Burst.explodeArguments(constructor);
  List<Runner> burstRunners = new ArrayList<>(constructorArgsList.length);
  for (Enum<?>[] constructorArgs : constructorArgsList) {
    burstRunners.add(new BurstRunner(cls, constructor, constructorArgs, burstMethods));
  }

  return unmodifiableList(burstRunners);
}
 
开发者ID:square,项目名称:burst,代码行数:24,代码来源:BurstJUnit4.java

示例3: getParametersMethod

import org.junit.runners.model.TestClass; //导入方法依赖的package包/类
private FrameworkMethod getParametersMethod() throws Exception {
    TestClass testClass = getTestClass();
    List<FrameworkMethod> methods = testClass.getAnnotatedMethods(Parameters.class);
    for (FrameworkMethod each : methods) {
        int modifiers = each.getMethod().getModifiers();
        if (Modifier.isStatic(modifiers) && Modifier.isPublic(modifiers)) {
            return each;
        }
    }

    throw new Exception("No public static parameters method on class " + testClass.getName());
}
 
开发者ID:bkromhout,项目名称:Minerva,代码行数:13,代码来源:ParameterizedRobolectricGradleTestRunner.java

示例4: getParametersMethod

import org.junit.runners.model.TestClass; //导入方法依赖的package包/类
/**
 * @param testClass
 * @return
 */
protected FrameworkMethod getParametersMethod(TestClass testClass) throws Exception {
    List<FrameworkMethod> methods = testClass.getAnnotatedMethods(Parameters.class);
    
    for (FrameworkMethod each : methods) {
        int modifiers = each.getMethod().getModifiers();
        if (Modifier.isStatic(modifiers) && Modifier.isPublic(modifiers)) {
            return each;
        }

    }

    throw new Exception("No public static parameters method on class " + testClass.getName());
}
 
开发者ID:linux-china,项目名称:unitils,代码行数:18,代码来源:UnitilsParameterized.java

示例5: getParametersMethod

import org.junit.runners.model.TestClass; //导入方法依赖的package包/类
/**
 * @param testClass
 * @return the method annotated with {@link Parameters}
 * @throws Exception
 * 
 * @see Parameterized#allParameters()
 */
private static FrameworkMethod getParametersMethod(TestClass testClass) throws Exception {
	List<FrameworkMethod> methods = testClass.getAnnotatedMethods(Parameters.class);
	for (FrameworkMethod each : methods) {
		if (each.isStatic() && each.isPublic()) {
			return each;
		}
	}

	throw new Exception("No public static parameters method on class " + testClass.getName());
}
 
开发者ID:PeterWippermann,项目名称:parameterized-suite,代码行数:18,代码来源:ParameterizedUtil.java

示例6: getWorkflowsMethod

import org.junit.runners.model.TestClass; //导入方法依赖的package包/类
public FrameworkMethod getWorkflowsMethod(TestClass testClass) throws Exception {
	List<FrameworkMethod> methods = testClass.getAnnotatedMethods(Workflows.class);
	for (FrameworkMethod method : methods) {
		int modifiers = method.getMethod().getModifiers();
		if (Modifier.isStatic(modifiers) && Modifier.isPublic(modifiers)) {
			return method;
		}
	}
	throw new Exception("No public static Workflows annotated method on class " + testClass.getName());
}
 
开发者ID:apache,项目名称:incubator-taverna-commandline,代码行数:11,代码来源:WorkflowTestSuite.java

示例7: getObjectsMethod

import org.junit.runners.model.TestClass; //导入方法依赖的package包/类
public static FrameworkMethod getObjectsMethod(TestClass testClass) throws Exception {
	List<FrameworkMethod> methods = testClass.getAnnotatedMethods(Objects.class);
	for (FrameworkMethod each : methods) {
		int modifiers = each.getMethod().getModifiers();
		if (Modifier.isStatic(modifiers) && Modifier.isPublic(modifiers))
			return each;
	}

	throw new Exception("No public static parameters method on class " + testClass.getName());
}
 
开发者ID:TBMCPlugins,项目名称:ButtonChat,代码行数:11,代码来源:ObjectTestRunner.java

示例8: getConfigMethod

import org.junit.runners.model.TestClass; //导入方法依赖的package包/类
private static FrameworkMethod getConfigMethod(TestClass testClass) {
  List<FrameworkMethod> methods = testClass.getAnnotatedMethods(Config.class);
  if (methods.isEmpty()) {
    throw new IllegalStateException("@" + Config.class.getSimpleName() + " method not found");
  }
  if (methods.size() > 1) {
    throw new IllegalStateException("Too many @" + Config.class.getSimpleName() + " methods");
  }
  FrameworkMethod method = methods.get(0);
  int modifiers = method.getMethod().getModifiers();
  if (!(Modifier.isStatic(modifiers) && Modifier.isPublic(modifiers))) {
    throw new IllegalStateException("@" + Config.class.getSimpleName() + " method \"" + method.getName() + "\" must be public static");
  }
  return method;
}
 
开发者ID:liveontologies,项目名称:elk-reasoner,代码行数:16,代码来源:PolySuite.java

示例9: getParametersMethod

import org.junit.runners.model.TestClass; //导入方法依赖的package包/类
static FrameworkMethod getParametersMethod(TestClass testClass)	throws Exception 
{
	List<FrameworkMethod> methods= testClass.getAnnotatedMethods(Parameterized.Parameters.class);
	for (FrameworkMethod each : methods) {
		int modifiers= each.getMethod().getModifiers();
		if (Modifier.isStatic(modifiers) && Modifier.isPublic(modifiers))
			return each;
	}

	throw new Exception("No public static parameters method on class " + testClass.getName());
}
 
开发者ID:kirilluk,项目名称:statechum,代码行数:12,代码来源:ParameterizedWithName.java

示例10: getParametersToStringMethod

import org.junit.runners.model.TestClass; //导入方法依赖的package包/类
static FrameworkMethod getParametersToStringMethod(TestClass testClass)	throws Exception 
{
	List<FrameworkMethod> methods= testClass.getAnnotatedMethods(ParametersToString.class);
	for (FrameworkMethod each : methods) {
		int modifiers= each.getMethod().getModifiers();
		if (Modifier.isStatic(modifiers) && Modifier.isPublic(modifiers))
			return each;
	}
	throw new Exception("No public static ParametersToString method on class " + testClass.getName());
}
 
开发者ID:kirilluk,项目名称:statechum,代码行数:11,代码来源:ParameterizedWithName.java

示例11: invokeAfterClass

import org.junit.runners.model.TestClass; //导入方法依赖的package包/类
private void invokeAfterClass(final Class<?> clazz) throws Throwable {
  final TestClass testClass = new TestClass(clazz);
  final List<FrameworkMethod> afters = testClass.getAnnotatedMethods(AfterClass.class);
  for (FrameworkMethod after : afters) {
    after.invokeExplosively(null);
  }
}
 
开发者ID:qx,项目名称:FullRobolectricTestSample,代码行数:8,代码来源:RobolectricTestRunner.java

示例12: invokeBeforeClass

import org.junit.runners.model.TestClass; //导入方法依赖的package包/类
private void invokeBeforeClass(final Class clazz) throws Throwable {
  if (!loadedTestClasses.contains(clazz)) {
    loadedTestClasses.add(clazz);

    final TestClass testClass = new TestClass(clazz);
    final List<FrameworkMethod> befores = testClass.getAnnotatedMethods(BeforeClass.class);
    for (FrameworkMethod before : befores) {
      before.invokeExplosively(null);
    }
  }
}
 
开发者ID:qx,项目名称:FullRobolectricTestSample,代码行数:12,代码来源:RobolectricTestRunner.java

示例13: getParametersMethod

import org.junit.runners.model.TestClass; //导入方法依赖的package包/类
private FrameworkMethod getParametersMethod() throws Exception {
  TestClass testClass = getTestClass();
  List<FrameworkMethod> methods = testClass.getAnnotatedMethods(Parameters.class);
  for (FrameworkMethod each : methods) {
    int modifiers = each.getMethod().getModifiers();
    if (Modifier.isStatic(modifiers) && Modifier.isPublic(modifiers)) {
      return each;
    }
  }

  throw new Exception("No public static parameters method on class " + testClass.getName());
}
 
开发者ID:qx,项目名称:FullRobolectricTestSample,代码行数:13,代码来源:ParameterizedRobolectricTestRunner.java

示例14: getParametersMethod

import org.junit.runners.model.TestClass; //导入方法依赖的package包/类
private FrameworkMethod getParametersMethod(TestClass testClass)
        throws Exception {
    List<FrameworkMethod> methods= testClass
            .getAnnotatedMethods(Parameters.class);
    for (FrameworkMethod each : methods) {
        int modifiers= each.getMethod().getModifiers();
        if (Modifier.isStatic(modifiers) && Modifier.isPublic(modifiers))
            return each;
    }

    throw new Exception("No public static parameters method on class "
            + testClass.getName());
}
 
开发者ID:reprogrammer,项目名称:checker-framework,代码行数:14,代码来源:CheckerParameterized.java

示例15: getAnnotatedMethods

import org.junit.runners.model.TestClass; //导入方法依赖的package包/类
static private List<FrameworkMethod> getAnnotatedMethods(TestClass testClass) {
	return testClass.getAnnotatedMethods(TestWith.class); //TODO possible indirect invocation
}
 
开发者ID:piotrturski,项目名称:zohhak,代码行数:4,代码来源:RunnerDelegator.java


注:本文中的org.junit.runners.model.TestClass.getAnnotatedMethods方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。