Home
last modified time | relevance | path

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

/external/robolectric-shadows/processor/src/test/java/org/robolectric/annotation/processing/validator/
DRealObjectValidatorTest.java8 import static org.robolectric.annotation.processing.validator.SingleClassSubject.singleClass;
22 assertAbout(singleClass()) in realObjectWithoutImplements_shouldNotCompile()
32 assertAbout(singleClass()) in realObjectParameterizedMissingParameters_shouldNotCompile()
42 assertAbout(singleClass()) in realObjectParameterizedMismatch_shouldNotCompile()
52 assertAbout(singleClass()) in realObjectWithEmptyImplements_shouldNotRaiseOwnError()
62 assertAbout(singleClass()) in realObjectWithEmptyClassName_shouldNotRaiseOwnError()
71 assertAbout(singleClass()) in realObjectWithTypeMismatch_shouldNotCompile()
81 assertAbout(singleClass()) in realObjectWithClassName_typeMismatch_shouldNotCompile()
91 assertAbout(singleClass()) in realObjectWithCorrectType_shouldCompile()
109 assertAbout(singleClass()) in realObjectWithNestedClassName_shouldCompile()
DImplementsValidatorTest.java5 import static org.robolectric.annotation.processing.validator.SingleClassSubject.singleClass;
18 assertAbout(singleClass()) in implementsWithoutClassOrClassName_shouldNotCompile()
29 assertAbout(singleClass()) in value_withUnresolvableClassNameAndOldMaxSdk_shouldNotCompile()
37 assertAbout(singleClass()) in value_withClassName_shouldNotCompile()
47 assertAbout(singleClass()) in implementsWithParameterMismatch_shouldNotCompile()
57 assertAbout(singleClass()) in implementsWithMissingParameters_shouldNotCompile()
67 assertAbout(singleClass()) in implementsWithExtraParameters_shouldNotCompile()
78 assertAbout(singleClass()) in constructorShadowWithoutImplementation_shouldNotCompile()
DResetterValidatorTest.java4 import static org.robolectric.annotation.processing.validator.SingleClassSubject.singleClass;
16 assertAbout(singleClass()) in resetterWithoutImplements_shouldNotCompile()
26 assertAbout(singleClass()) in nonStaticResetter_shouldNotCompile()
36 assertAbout(singleClass()) in nonPublicResetter_shouldNotCompile()
46 assertAbout(singleClass()) in resetterWithParameters_shouldNotCompile()
56 assertAbout(singleClass()) in goodResetter_shouldCompile()
DImplementationValidatorTest.java4 import static org.robolectric.annotation.processing.validator.SingleClassSubject.singleClass;
17 assertAbout(singleClass()) in implementationWithoutImplements_shouldNotCompile()
27 assertAbout(singleClass()) in implementationWithIncorrectVisibility_shouldNotCompile()
DSingleClassSubject.java22 public static Subject.Factory<SingleClassSubject, String> singleClass() { in singleClass() method in SingleClassSubject