OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TextFoo
(Results
1 - 2
of
2
) sorted by null
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/bytecode/
ShadowWranglerTest.java
99
TextFoo
textFoo
= new
TextFoo
(name);
100
assertEquals(ShadowFoo.class, Robolectric.shadowOf_(
textFoo
).getClass());
108
TextFoo
textFoo
= new
TextFoo
(name);
109
assertThat(shadowOf(
textFoo
), instanceOf(ShadowTextFoo.class));
165
private ShadowTextFoo shadowOf(
TextFoo
foo) {
192
@Implements(
TextFoo
.class
[
all
...]
/external/robolectric-shadows/sandbox/src/test/java/org/robolectric/
ShadowWranglerIntegrationTest.java
91
TextFoo
textFoo
= new
TextFoo
(name);
92
assertEquals(ShadowFoo.class, Shadow.extract(
textFoo
).getClass());
98
TextFoo
textFoo
= new
TextFoo
(name);
99
assertThat(shadowOf(
textFoo
)).isInstanceOf(ShadowTextFoo.class);
239
private ShadowTextFoo shadowOf(
TextFoo
foo) {
274
@Implements(
TextFoo
.class
[
all
...]
Completed in 536 milliseconds