/libcore/luni/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/spi/ |
SelectorProviderTest.java | 34 assertNotNull(SelectorProvider.provider()); 39 assertNotNull(SelectorProvider.provider().openDatagramChannel()); 40 assertNotNull(SelectorProvider.provider().openPipe()); 41 assertNotNull(SelectorProvider.provider().openServerSocketChannel()); 42 assertNotNull(SelectorProvider.provider().openSocketChannel()); 43 assertNotNull(SelectorProvider.provider().openSelector());
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/ |
MapModeTest.java | 32 assertNotNull(FileChannel.MapMode.PRIVATE); 33 assertNotNull(FileChannel.MapMode.READ_ONLY); 34 assertNotNull(FileChannel.MapMode.READ_WRITE); 48 assertNotNull(FileChannel.MapMode.PRIVATE.toString()); 49 assertNotNull(FileChannel.MapMode.READ_ONLY.toString()); 50 assertNotNull(FileChannel.MapMode.READ_WRITE.toString());
|
/external/apache-harmony/text/src/test/java/org/apache/harmony/text/tests/java/text/ |
AnnotationTest.java | 30 assertNotNull(new Annotation(null)); 31 assertNotNull(new Annotation("value")); 51 assertNotNull(new Annotation(null).toString()); 52 assertNotNull(new Annotation("value").toString());
|
/libcore/luni/src/test/java/tests/api/java/util/ |
MissingResourceExceptionTest.java | 33 assertNotNull(new MissingResourceException("Detail string", "Class name string", "Key string")); 34 assertNotNull(new MissingResourceException(null, "Class name string", "Key string")); 35 assertNotNull(new MissingResourceException("Detail string", null, "Key string")); 36 assertNotNull(new MissingResourceException("Detail string", "Class name string", null));
|
NoSuchElementExceptionTest.java | 31 assertNotNull(new NoSuchElementException()); 48 assertNotNull(new NoSuchElementException("String")); 49 assertNotNull(new NoSuchElementException(null));
|
/cts/tests/tests/sax/src/android/sax/cts/ |
RootElementTest.java | 29 assertNotNull(root.getContentHandler()); 32 assertNotNull(root1.getContentHandler());
|
/libcore/luni/src/test/java/libcore/sqlite/ |
OldExceptionTest.java | 35 assertNotNull(e); 36 assertNotNull(e.getMessage());
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/ |
TypeNotPresentExceptionTest.java | 28 assertNotNull(e); 30 assertNotNull(m); 33 assertNotNull(e); 35 assertNotNull(m); 39 assertNotNull(e.getMessage());
|
/cts/tests/tests/hardware/src/android/hardware/camera2/cts/ |
CameraCharacteristicsTest.java | 47 assertNotNull("Can't connect to camera manager", mCameraManager); 64 assertNotNull(String.format("Can't get camera characteristics from: ID %s", ids[i]), 69 assertNotNull("Invalid property: android.control.aeAvailableAntibandingModes", 73 assertNotNull(String.format("Can't get camera characteristics keys from: ID %s", 87 assertNotNull(String.format("Can't get camera characteristics from: ID %s", ids[i]), 92 assertNotNull("Invalid property: android.control.aeAvailableTargetFpsRanges", 96 assertNotNull(String.format("Can't get camera characteristics keys from: ID %s", 110 assertNotNull(String.format("Can't get camera characteristics from: ID %s", ids[i]), 115 assertNotNull("Invalid property: android.control.aeCompensationRange", 119 assertNotNull(String.format("Can't get camera characteristics keys from: ID %s" [all...] |
/sdk/testapps/libsTest/appTest/src/com/android/tests/libstest/app/ |
MainActivityTest.java | 61 assertNotNull(a); 79 assertNotNull(mAppTextView1); 80 assertNotNull(mAppTextView2); 81 assertNotNull(mLib1TextView1); 82 assertNotNull(mLib1TextView2); 83 assertNotNull(mLib2TextView1); 84 assertNotNull(mLib2TextView2);
|
/development/samples/Alarm/tests/src/com/example/android/newalarm/ |
AlarmServiceTest.java | 77 assertNotNull(mService.mNotificationManager); 80 assertNotNull(mService.mContentIntent); 83 assertNotNull(mService.mNotification);
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/reflect/ |
UndeclaredThrowableExceptionTest.java | 32 assertNotNull(e); 44 assertNotNull(e); 54 assertNotNull(e);
|
/libcore/luni/src/test/java/libcore/java/security/ |
OldKeyPairGeneratorTestDH.java | 35 assertNotNull("no keypair generated", keyPair); 36 assertNotNull("no public key generated", keyPair.getPublic()); 37 assertNotNull("no private key generated", keyPair.getPrivate());
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
TypefaceTest.java | 93 assertNotNull(typeface); 95 assertNotNull(typeface); 97 assertNotNull(typeface); 100 assertNotNull(typeface); 102 assertNotNull(typeface); 107 assertNotNull(typeface); 109 assertNotNull(typeface); 111 assertNotNull(typeface); 113 assertNotNull(typeface); 117 assertNotNull(Typeface.DEFAULT) [all...] |
Bitmap_ConfigTest.java | 41 assertNotNull(Bitmap.createBitmap(10, 24, Config.ALPHA_8)); 42 assertNotNull(Bitmap.createBitmap(10, 24, Config.ARGB_4444)); 43 assertNotNull(Bitmap.createBitmap(10, 24, Config.ARGB_8888)); 44 assertNotNull(Bitmap.createBitmap(10, 24, Config.RGB_565));
|
BlurMaskFilter_BlurTest.java | 41 assertNotNull(new BlurMaskFilter(10.24f, Blur.INNER)); 42 assertNotNull(new BlurMaskFilter(10.24f, Blur.NORMAL)); 43 assertNotNull(new BlurMaskFilter(10.24f, Blur.OUTER)); 44 assertNotNull(new BlurMaskFilter(10.24f, Blur.SOLID));
|
/cts/tests/tests/text/src/android/text/cts/ |
BoringLayout_MetricsTest.java | 26 assertNotNull(bm.toString());
|
/developers/build/templates/create/_MODULE_/tests/src/_PACKAGE_/tests/ |
SampleTests.java.ftl | 53 assertNotNull("mTestActivity is null", mTestActivity); 54 assertNotNull("mTestFragment is null", mTestFragment);
|
/development/samples/ApiDemos/tests/src/com/example/android/apis/ |
ApiDemosTest.java | 38 assertNotNull("activity should be launched successfully", getActivity());
|
/development/samples/HelloActivity/tests/src/com/example/android/helloactivity/ |
HelloActivityTest.java | 38 assertNotNull("activity should be launched successfully", getActivity());
|
/development/samples/LunarLander/tests/src/com/example/android/lunarlander/ |
LunarLanderTest.java | 40 assertNotNull("activity should be launched successfully", getActivity());
|
/development/samples/NotePad/tests/src/com/example/android/notepad/ |
NotePadActivityTest.java | 39 assertNotNull("activity should be launched successfully", getActivity());
|
/development/samples/SkeletonApp/tests/src/com/example/android/skeletonapp/ |
SkeletonAppTest.java | 39 assertNotNull("activity should be launched successfully", getActivity());
|
/development/samples/Snake/tests/src/com/example/android/snake/ |
SnakeTest.java | 38 assertNotNull("activity should be launched successfully", getActivity());
|
/frameworks/testing/androidtestlib/tests/src/com/android/test/ |
MyInstrumentationTestCase.java | 33 assertNotNull("instrumentation was not injected", getInstrumentation());
|