本文整理汇总了Java中com.intellij.testFramework.TestRunnerUtil.isJUnit4TestClass方法的典型用法代码示例。如果您正苦于以下问题:Java TestRunnerUtil.isJUnit4TestClass方法的具体用法?Java TestRunnerUtil.isJUnit4TestClass怎么用?Java TestRunnerUtil.isJUnit4TestClass使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.intellij.testFramework.TestRunnerUtil
的用法示例。
在下文中一共展示了TestRunnerUtil.isJUnit4TestClass方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: shouldAddTestCase
import com.intellij.testFramework.TestRunnerUtil; //导入方法依赖的package包/类
private boolean shouldAddTestCase(final Class<?> testCaseClass, String moduleName, boolean testForExcluded) {
if ((testCaseClass.getModifiers() & Modifier.ABSTRACT) != 0) return false;
if (testForExcluded && shouldExcludeTestClass(moduleName, testCaseClass)) return false;
if (TestCase.class.isAssignableFrom(testCaseClass) || TestSuite.class.isAssignableFrom(testCaseClass)) {
return true;
}
try {
final Method suiteMethod = testCaseClass.getMethod("suite");
if (Test.class.isAssignableFrom(suiteMethod.getReturnType()) && (suiteMethod.getModifiers() & Modifier.STATIC) != 0) {
return true;
}
}
catch (NoSuchMethodException ignored) { }
return TestRunnerUtil.isJUnit4TestClass(testCaseClass);
}
示例2: shouldAddTestCase
import com.intellij.testFramework.TestRunnerUtil; //导入方法依赖的package包/类
/**
* Determine if we should load this test case.
*/
private boolean shouldAddTestCase(final Class<?> testCaseClass, boolean testForExcluded) {
if ((testCaseClass.getModifiers() & Modifier.ABSTRACT) != 0) return false;
if (testForExcluded && shouldExcludeTestClass(testCaseClass)) return false;
if (TestCase.class.isAssignableFrom(testCaseClass) || TestSuite.class.isAssignableFrom(testCaseClass)) {
return true;
}
try {
final Method suiteMethod = testCaseClass.getMethod("suite");
if (Test.class.isAssignableFrom(suiteMethod.getReturnType()) && (suiteMethod.getModifiers() & Modifier.STATIC) != 0) {
//System.out.println("testCaseClass = " + testCaseClass);
return true;
}
}
catch (NoSuchMethodException e) {
// can't be
}
return TestRunnerUtil.isJUnit4TestClass(testCaseClass);
}
示例3: isJUnitClass
import com.intellij.testFramework.TestRunnerUtil; //导入方法依赖的package包/类
private static boolean isJUnitClass(Class<?> clazz) {
return TestCase.class.isAssignableFrom(clazz) || TestRunnerUtil.isJUnit4TestClass(clazz) || com.intellij.testFramework.Parameterized.class.isAssignableFrom(clazz);
}
示例4: isJUnitClass
import com.intellij.testFramework.TestRunnerUtil; //导入方法依赖的package包/类
private static boolean isJUnitClass(Class<?> clazz) {
return TestCase.class.isAssignableFrom(clazz) || TestRunnerUtil.isJUnit4TestClass(clazz);
}