當前位置: 首頁>>代碼示例>>Java>>正文


Java TestClass.getName方法代碼示例

本文整理匯總了Java中org.junit.runners.model.TestClass.getName方法的典型用法代碼示例。如果您正苦於以下問題:Java TestClass.getName方法的具體用法?Java TestClass.getName怎麽用?Java TestClass.getName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.junit.runners.model.TestClass的用法示例。


在下文中一共展示了TestClass.getName方法的13個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: createTestUsingFieldInjection

import org.junit.runners.model.TestClass; //導入方法依賴的package包/類
/**
 * @see BlockJUnit4ClassRunnerWithParameters#createTestUsingFieldInjection()
 */
private static Object createTestUsingFieldInjection(TestClass testClass, Object[] parameters) throws Exception {
    List<FrameworkField> annotatedFieldsByParameter = getAnnotatedFieldsByParameter(testClass);
    if (annotatedFieldsByParameter.size() != parameters.length) {
        throw new Exception("Wrong number of parameters and @Parameter fields." + " @Parameter fields counted: " + annotatedFieldsByParameter.size()
                + ", available parameters: " + parameters.length + ".");
    }
    Object testClassInstance = testClass.getJavaClass().newInstance();
    for (FrameworkField each : annotatedFieldsByParameter) {
        Field field = each.getField();
        Parameterized.Parameter annotation = field.getAnnotation(Parameterized.Parameter.class);
        int index = annotation.value();
        try {
            field.set(testClassInstance, parameters[index]);
        } catch (IllegalArgumentException iare) {
            throw new Exception(
                    testClass.getName() + ": Trying to set " + field.getName() + " with the value " + parameters[index] + " that is not the right type ("
                            + parameters[index].getClass().getSimpleName() + " instead of " + field.getType().getSimpleName() + ").",
                    iare);
        }
    }
    return testClassInstance;
}
 
開發者ID:PeterWippermann,項目名稱:parameterized-suite,代碼行數:26,代碼來源:BlockJUnit4ClassRunnerWithParametersUtil.java

示例2: 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

示例3: getTestConfig

import org.junit.runners.model.TestClass; //導入方法依賴的package包/類
/**
 * Searches in the resource for a {@link TestConfig} fitting to the given {@link TestClass}.
 * 
 * @param resource
 *            The resource where to search in.
 * @param testClass
 *            The TestClass to which the {@link TestConfig} should fit.
 * @return The {@link TestConfig} fitting to the {@link TestClass}.
 */
public static TestConfig getTestConfig(Resource resource,
	TestClass testClass) {
	// TODO add a standard TestConfig? e.g. where clazz = null / or
	// testconfig for complete packages
	for (EObject object : resource.getContents()) {
		if (object instanceof TestConfig) {
			TestConfig config = (TestConfig) object;
			Class<?> clazz = config.getTestClass();
			if (clazz.getName().equals(testClass.getJavaClass().getName())) {
				return config;
			}
		}
	}

	throw new IllegalArgumentException("No fitting testconfig for "
		+ testClass.getName() + " in " + resource.getURI() + " found.");
}
 
開發者ID:edgarmueller,項目名稱:emfstore-rest,代碼行數:27,代碼來源:FuzzyUtil.java

示例4: 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

示例5: 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

示例6: 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

示例7: parametersMethodReturnedWrongType

import org.junit.runners.model.TestClass; //導入方法依賴的package包/類
/**
 * @see Parameterized#parametersMethodReturnedWrongType()
 */
private static Exception parametersMethodReturnedWrongType(TestClass testClass) throws Exception {
	String className = testClass.getName();
	String methodName = getParametersMethod(testClass).getName();
	String message = MessageFormat.format("{0}.{1}() must return an Iterable of arrays.", className, methodName);
	return new Exception(message);
}
 
開發者ID:PeterWippermann,項目名稱:parameterized-suite,代碼行數:10,代碼來源:ParameterizedUtil.java

示例8: 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

示例9: 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

示例10: 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

示例11: 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

示例12: 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

示例13: 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


注:本文中的org.junit.runners.model.TestClass.getName方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。