OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ShadowIntent
(Results
1 - 11
of
11
) sorted by null
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/matchers/
StartedMatcher.java
7
import com.xtremelabs.robolectric.shadows.
ShadowIntent
;
53
ShadowIntent
shadowIntent
= shadowOf(actualStartedIntent);
55
boolean intentsMatch = shadowOf(expectedIntent).realIntentEquals(
shadowIntent
);
StartedServiceMatcher.java
7
import com.xtremelabs.robolectric.shadows.
ShadowIntent
;
62
ShadowIntent
shadowIntent
= shadowOf(actualStartedIntent);
64
//boolean intentsMatch = shadowOf(expectedIntent).realIntentEquals(
shadowIntent
);
66
boolean intentsMatch = shadowOf(expectedIntent).getIntentClass().equals(
shadowIntent
.getIntentClass());
71
Set<String> keys =
shadowIntent
.getExtras().keySet();
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowIntent.java
26
public class
ShadowIntent
{
54
ShadowIntent
other = shadowOf(intent);
198
ShadowIntent
srcShadowIntent = shadowOf(src);
429
ShadowIntent
other = shadowOf(otherIntent);
537
* Compares an {@code Intent} with a {@code
ShadowIntent
} (obtained via a call to
540
* @param o a {@code
ShadowIntent
}
544
public boolean realIntentEquals(
ShadowIntent
o) {
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
IntentTest.java
211
ShadowIntent
si = shadowOf(intent);
222
ShadowIntent
si = shadowOf(intent);
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/
Robolectric.java
219
ShadowIntent
.class,
382
ShadowIntent
.reset();
681
public static
ShadowIntent
shadowOf(Intent instance) {
682
return (
ShadowIntent
) shadowOf_(instance);
[
all
...]
/external/robolectric/v3/runtime/
shadows-core-3.1-SNAPSHOT-16.jar
shadows-core-3.1-SNAPSHOT-17.jar
shadows-core-3.1-SNAPSHOT-18.jar
shadows-core-3.1-SNAPSHOT-19.jar
shadows-core-3.1-SNAPSHOT-21.jar
shadows-core-3.1-SNAPSHOT-22.jar
Completed in 2795 milliseconds