OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:notNullValue
(Results
1 - 25
of
59
) sorted by null
1
2
3
/external/hamcrest/src/org/hamcrest/core/
IsNull.java
35
public static <T> Matcher<T>
notNullValue
() {
51
public static <T> Matcher<T>
notNullValue
(@SuppressWarnings("unused") Class<T> type) {
52
return
notNullValue
();
/external/junit/src/org/junit/
Assume.java
5
import static org.hamcrest.CoreMatchers.
notNullValue
;
47
assumeThat(asList(objects), Each.each(
notNullValue
()));
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
AnimationUtilsTest.java
14
import static org.hamcrest.CoreMatchers.
notNullValue
;
22
assertThat(AnimationUtils.loadAnimation(new Activity(), 1),
notNullValue
());
ListFragmentTest.java
14
import static org.hamcrest.CoreMatchers.
notNullValue
;
28
assertThat(listFragment.getListAdapter(), is(
notNullValue
()));
ContentProviderTest.java
4
import static org.hamcrest.CoreMatchers.
notNullValue
;
64
assertThat(provider.getContext(), is(
notNullValue
()));
68
assertThat(provider.getContext().getContentResolver(), is(
notNullValue
()));
CookieSyncManagerTest.java
3
import static org.hamcrest.CoreMatchers.
notNullValue
;
22
assertThat( CookieSyncManager.createInstance( new Activity() ) ,
notNullValue
() );
28
assertThat( CookieSyncManager.getInstance(),
notNullValue
() );
SpannableStringTest.java
4
import static org.hamcrest.CoreMatchers.
notNullValue
;
55
assertThat(spans,
notNullValue
());
68
assertThat(spans,
notNullValue
());
73
assertThat(spans,
notNullValue
());
78
assertThat(spans,
notNullValue
());
83
assertThat(spans,
notNullValue
());
88
assertThat(spans,
notNullValue
());
CountDownTimerTest.java
14
import static org.hamcrest.CoreMatchers.
notNullValue
;
64
assertThat(timer,
notNullValue
());
71
assertThat(timer,
notNullValue
());
ListPreferenceTest.java
14
import static org.hamcrest.CoreMatchers.
notNullValue
;
49
assertThat(listPreference.getEntries(),
notNullValue
());
65
assertThat(listPreference.getEntryValues(),
notNullValue
());
ListActivityTest.java
14
import static org.hamcrest.CoreMatchers.
notNullValue
;
27
assertThat(listActivity.getListAdapter(), is(
notNullValue
()));
PreferenceActivityTest.java
6
import static org.hamcrest.CoreMatchers.
notNullValue
;
36
assertThat( activity.getListView(),
notNullValue
() );
CameraParametersTest.java
16
import static org.hamcrest.CoreMatchers.
notNullValue
;
85
assertThat(supportedFormats,
notNullValue
());
93
assertThat(supportedFormats,
notNullValue
());
101
assertThat(supportedSizes,
notNullValue
());
110
assertThat(supportedSizes,
notNullValue
());
119
assertThat(supportedRanges,
notNullValue
());
130
assertThat(supportedRates,
notNullValue
());
ResourcesTest.java
7
import static org.hamcrest.CoreMatchers.
notNullValue
;
50
assertThat(configuration,
notNullValue
());
51
assertThat(configuration.locale,
notNullValue
());
61
assertThat(resources.newTheme(),
notNullValue
());
ContentProviderOperationBuilderTest.java
5
import static org.hamcrest.CoreMatchers.
notNullValue
;
68
assertThat(operation,
notNullValue
());
AlarmManagerTest.java
46
assertThat(scheduledAlarm,
notNullValue
());
56
assertThat(scheduledAlarm,
notNullValue
());
106
assertThat(shadowAlarmManager.peekNextScheduledAlarm(),
notNullValue
());
147
assertThat(scheduledAlarm,
notNullValue
());
148
assertThat(scheduledAlarm.operation,
notNullValue
());
SQLiteOpenHelperTest.java
14
import static org.hamcrest.CoreMatchers.
notNullValue
;
93
assertThat(database,
notNullValue
());
TelephonyManagerTest.java
15
import static org.hamcrest.CoreMatchers.
notNullValue
;
38
assertThat(shadowManager.getListener(),
notNullValue
());
PasswordTransformationMethodTest.java
54
assertThat(ShadowPasswordTransformationMethod.getInstance(), is(CoreMatchers.<Object>
notNullValue
()));
ActivityTest.java
112
assertThat(startedIntent,
notNullValue
());
125
assertThat(intentForResult,
notNullValue
());
127
assertThat(intentForResult.intent,
notNullValue
());
141
assertThat(intentForResult,
notNullValue
());
143
assertThat(intentForResult.intent,
notNullValue
());
293
assertThat(ShadowDialog.getLatestDialog(), CoreMatchers.<Object>
notNullValue
());
462
assertThat( shadow.getManagedCursors(),
notNullValue
() );
468
assertThat( shadow.getManagedCursors(),
notNullValue
() );
474
assertThat( shadow.getManagedCursors(),
notNullValue
() );
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
ScrollToPositionWithAutoMeasure.java
24
import static org.hamcrest.CoreMatchers.
notNullValue
;
82
notNullValue
());
92
notNullValue
());
95
assertThat(viewHolder,
notNullValue
());
TestResizingRelayoutWithAutoMeasure.java
24
import static org.hamcrest.CoreMatchers.
notNullValue
;
90
notNullValue
());
118
notNullValue
());
/frameworks/support/design/tests/src/android/support/design/widget/
BottomSheetDialogTest.java
65
assertThat(bottomSheet, is(
notNullValue
()));
67
assertThat(behavior, is(
notNullValue
()));
108
assertThat(bottomSheet, is(
notNullValue
()));
109
assertThat(coordinator, is(
notNullValue
()));
110
assertThat(behavior, is(
notNullValue
()));
BottomSheetBehaviorTouchTest.java
20
import static org.hamcrest.CoreMatchers.
notNullValue
;
88
assertThat(mBottomSheet, is(
notNullValue
()));
102
assertThat(view, is(
notNullValue
()));
/external/hamcrest/src/org/hamcrest/
CoreMatchers.java
147
public static <T> org.hamcrest.Matcher<T>
notNullValue
() {
148
return org.hamcrest.core.IsNull.
notNullValue
();
154
public static <T> org.hamcrest.Matcher<T>
notNullValue
(java.lang.Class<T> type) {
155
return org.hamcrest.core.IsNull.
notNullValue
(type);
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/res/
RobolectricPackageManagerTest.java
44
assertThat(info,
notNullValue
());
58
assertThat(info,
notNullValue
());
69
assertThat(activities,
notNullValue
()); // empty list, not null
84
assertThat(activities,
notNullValue
());
Completed in 1119 milliseconds
1
2
3