Home
last modified time | relevance | path

Searched refs:newTestMethod (Results 1 – 1 of 1) sorted by relevance

/frameworks/libs/modules-utils/javatests/com/android/modules/utils/testing/
DExtendedMockitoRuleTest.java72 private final Description mDescription = newTestMethod();
247 }, newTestMethod(new MockStaticAnnotation(AnotherStaticClass.class))).evaluate(); in testMockStatic_ruleAndAnnotation()
257 Set<Class<?>> mockedClasses = rule.getMockedStaticClasses(newTestMethod(SubClass.class, in testMockStatic_fromEverywhere()
345 }, newTestMethod(new SpyStaticAnnotation(AnotherStaticClass.class))).evaluate(); in testSpyStatic_ruleAndAnnotation()
355 Set<Class<?>> spiedClasses = rule.getSpiedStaticClasses(newTestMethod(SubClass.class, in testSpyStatic_fromEverywhere()
627 private static Description newTestMethod(Annotation... annotations) { in newTestMethod() method in ExtendedMockitoRuleTest
628 return newTestMethod(ClassUnderTest.class, annotations); in newTestMethod()
631 private static Description newTestMethod(Class<?> testClass, Annotation... annotations) { in newTestMethod() method in ExtendedMockitoRuleTest