HomeSort by relevance Sort by last modified time
    Searched defs:notNullValue (Results 1 - 25 of 30) sorted by null

1 2

  /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/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/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()));
PasswordTransformationMethodTest.java 54 assertThat(ShadowPasswordTransformationMethod.getInstance(), is(CoreMatchers.<Object>notNullValue()));
CookieSyncManagerTest.java 3 import static org.hamcrest.CoreMatchers.notNullValue;
22 assertThat( CookieSyncManager.createInstance( new Activity() ) , notNullValue() );
28 assertThat( CookieSyncManager.getInstance(), notNullValue() );
ListActivityTest.java 14 import static org.hamcrest.CoreMatchers.notNullValue;
27 assertThat(listActivity.getListAdapter(), is(notNullValue()));
ListPreferenceTest.java 14 import static org.hamcrest.CoreMatchers.notNullValue;
49 assertThat(listPreference.getEntries(), notNullValue());
65 assertThat(listPreference.getEntryValues(), notNullValue());
PreferenceActivityTest.java 6 import static org.hamcrest.CoreMatchers.notNullValue;
36 assertThat( activity.getListView(), notNullValue() );
ResourcesTest.java 7 import static org.hamcrest.CoreMatchers.notNullValue;
50 assertThat(configuration, notNullValue());
51 assertThat(configuration.locale, notNullValue());
61 assertThat(resources.newTheme(), notNullValue());
TelephonyManagerTest.java 15 import static org.hamcrest.CoreMatchers.notNullValue;
38 assertThat(shadowManager.getListener(), 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());
ContextWrapperTest.java 23 import static org.hamcrest.CoreMatchers.notNullValue;
161 assertThat(contextWrapper.getBaseContext(), notNullValue());
CursorAdapterTest.java 4 import static org.hamcrest.CoreMatchers.notNullValue;
65 assertThat(adapter.getCursor(), notNullValue());
CameraTest.java 20 import static org.hamcrest.CoreMatchers.notNullValue;
44 assertThat(camera, notNullValue());
65 assertThat(parameters, notNullValue());
66 assertThat(parameters.getSupportedPreviewFormats(), notNullValue());
MediaRecorderTest.java 72 assertThat(shadowMediaRecorder.getCamera(), notNullValue());
95 assertThat(shadowMediaRecorder.getErrorListener(), notNullValue());
104 assertThat(shadowMediaRecorder.getInfoListener(), notNullValue());
132 assertThat(shadowMediaRecorder.getPreviewDisplay(), notNullValue());
PreferenceTest.java 6 import static org.hamcrest.CoreMatchers.notNullValue;
226 assertThat( preference.getIntent(), notNullValue() );
233 assertThat( preference.getDependency(), 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() );
ListViewTest.java 7 import static org.hamcrest.CoreMatchers.notNullValue;
110 assertThat(listView.findViewById(0), notNullValue());
111 assertThat(listView.findViewById(1), notNullValue());
112 assertThat(listView.findViewById(2), notNullValue());
113 assertThat(listView.findViewById(3), notNullValue());
  /external/hamcrest/library/src/org/hamcrest/
Matchers.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);
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-core/1.1/
hamcrest-core-1.1.jar 
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-library/1.1/
hamcrest-library-1.1.jar 
  /prebuilts/tools/common/m2/repository/org/hamcrest/hamcrest-core/1.3/
hamcrest-core-1.3.jar 

Completed in 906 milliseconds

1 2