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

1 2 3 4 5 6 7 8 91011>>

  /art/test/436-shift-constant/src/
Main.java 19 assertEquals(0x80000000, doShiftInt(1));
20 assertEquals(0x8000000000000000L, doShiftLong(1L));
31 public static void assertEquals(int a, int b) {
37 public static void assertEquals(long a, long b) {
  /art/test/553-invoke-super/src/
Main.java 20 static void assertEquals(int expected, int value) {
29 assertEquals(42, ((Integer)m.invoke(c.newInstance(), new Object[0])).intValue());
  /frameworks/layoutlib/bridge/tests/src/android/app/
SystemServiceRegistry_AccessorTest.java 32 assertEquals(Context.ACCESSIBILITY_SERVICE,
34 assertEquals(Context.INPUT_SERVICE,
36 assertEquals(Context.WINDOW_SERVICE,
  /frameworks/opt/telephony/tests/telephonytests/src/android/telephony/
SmsMessageTest.java 23 import static org.junit.Assert.assertEquals;
31 assertEquals(null, SmsMessage.createFromPdu(null, SmsConstants.FORMAT_3GPP2));
32 assertEquals(null, SmsMessage.createFromPdu(null, SmsConstants.FORMAT_3GPP));
33 assertEquals(null, SmsMessage.createFromPdu(null));
34 assertEquals(null, SmsMessage.newFromCMT(null));
  /art/test/556-invoke-super/src/
Main.java 24 static void assertEquals(int expected, int value) {
33 assertEquals(42, ((Integer)m.invoke(c.newInstance(), new Object[0])).intValue());
  /cts/tests/tests/alarmclock/src/android/alarmclock/cts/
DismissAlarmTest.java 28 assertEquals(Utils.COMPLETION_RESULT, runTest(TestcaseType.SET_ALARM_FOR_DISMISSAL));
29 assertEquals(Utils.COMPLETION_RESULT, runTest(TestcaseType.DISMISS_ALARM));
SetAlarmTest.java 28 assertEquals(Utils.COMPLETION_RESULT, runTest(TestcaseType.SET_ALARM));
  /cts/tests/tests/dpi/src/android/dpi/cts/
DefaultManifestAttributesSdkTest.java 36 assertEquals(Build.VERSION.SDK_INT, getAppInfo().targetSdkVersion);
  /cts/tests/tests/net/src/android/net/cts/
CredentialsTest.java 28 assertEquals(0, cred.getGid());
29 assertEquals(0, cred.getPid());
30 assertEquals(0, cred.getUid());
34 assertEquals(Integer.MAX_VALUE, cred.getGid());
35 assertEquals(Integer.MAX_VALUE, cred.getPid());
36 assertEquals(Integer.MAX_VALUE, cred.getUid());
40 assertEquals(Integer.MIN_VALUE, cred.getGid());
41 assertEquals(Integer.MIN_VALUE, cred.getPid());
42 assertEquals(Integer.MIN_VALUE, cred.getUid());
  /cts/tests/tests/transition/src/android/transition/cts/
SlideDefaultEdgeTest.java 18 import static org.junit.Assert.assertEquals;
35 assertEquals(Gravity.BOTTOM, slide.getSlideEdge());
  /cts/tests/tests/view/src/android/view/cts/
SoundEffectConstantsTest.java 19 import static org.junit.Assert.assertEquals;
34 assertEquals(SoundEffectConstants.NAVIGATION_RIGHT,
37 assertEquals(SoundEffectConstants.NAVIGATION_DOWN, SoundEffectConstants
39 assertEquals(SoundEffectConstants.NAVIGATION_LEFT, SoundEffectConstants
41 assertEquals(SoundEffectConstants.NAVIGATION_UP, SoundEffectConstants
44 assertEquals(SoundEffectConstants.NAVIGATION_DOWN, SoundEffectConstants
47 assertEquals(SoundEffectConstants.NAVIGATION_UP, SoundEffectConstants
  /external/guava/guava-tests/test/com/google/common/collect/
ImmutableCollectionTest.java 28 assertEquals(1, ImmutableCollection.Builder.expandedCapacity(0, 1));
29 assertEquals(2, ImmutableCollection.Builder.expandedCapacity(0, 2));
30 assertEquals(2, ImmutableCollection.Builder.expandedCapacity(1, 2));
31 assertEquals(Integer.MAX_VALUE,
33 assertEquals(Integer.MAX_VALUE,
35 assertEquals(Integer.MAX_VALUE,
38 assertEquals(13, ImmutableCollection.Builder.expandedCapacity(8, 9));
  /external/junit/src/main/java/org/junit/internal/
ExactComparisonCriteria.java 8 Assert.assertEquals(expected, actual);
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowTrafficStatsTest.java 3 import static org.junit.Assert.assertEquals;
17 assertEquals(TrafficStats.UNSUPPORTED, TrafficStats.getThreadStatsTag());
18 assertEquals(TrafficStats.UNSUPPORTED, TrafficStats.getMobileTxPackets());
19 assertEquals(TrafficStats.UNSUPPORTED, TrafficStats.getMobileRxPackets());
20 assertEquals(TrafficStats.UNSUPPORTED, TrafficStats.getMobileTxBytes());
21 assertEquals(TrafficStats.UNSUPPORTED, TrafficStats.getMobileRxBytes());
22 assertEquals(TrafficStats.UNSUPPORTED, TrafficStats.getTotalTxPackets());
23 assertEquals(TrafficStats.UNSUPPORTED, TrafficStats.getTotalRxPackets());
24 assertEquals(TrafficStats.UNSUPPORTED, TrafficStats.getTotalTxBytes());
25 assertEquals(TrafficStats.UNSUPPORTED, TrafficStats.getTotalRxBytes())
    [all...]
  /external/testng/src/test/java/test/annotationtransformer/
AnnotationTransformerDataProviderSampleTest.java 18 Assert.assertEquals(n, Integer.valueOf(42));
SimpleTest.java 15 Assert.assertEquals(m_n, 42);
  /external/testng/src/test/java/test/inject/
Sample.java 14 Assert.assertEquals(allMethods.length, 1);
15 Assert.assertEquals(allMethods[0].getMethod().getName(),"f");
  /external/testng/src/test/java/test/nested/
GarfTest.java 14 Assert.assertEquals(foo,AccountTypeEnum.ClearingMember);
  /external/testng/src/test/java/test/parameters/
InheritFromSuiteChild1.java 19 Assert.assertEquals(p1, "p1");
20 Assert.assertEquals(p2, "c1p2");
21 Assert.assertEquals(p3, "foobar");
22 Assert.assertEquals(p4, "c1p4");
InheritFromSuiteChild2.java 19 Assert.assertEquals(p1, "p1");
20 Assert.assertEquals(p2, "c2p2");
21 Assert.assertEquals(p3, "c2p3");
22 Assert.assertEquals(p4, "abc");
InheritFromSuiteChild3.java 18 Assert.assertEquals(p1, "p1");
19 Assert.assertEquals(p2, "c3p2");
20 Assert.assertEquals(p3, "c2p3");
21 Assert.assertEquals(p4, "c3p4");
  /external/testng/src/test/java/test/uniquesuite/
TestBefore1.java 10 Assert.assertEquals(m_beforeCount, 1);
TestBefore2.java 10 Assert.assertEquals(m_beforeCount, 1);
  /external/vogar/test/vogar/target/junit3/
ChangeDefaultLocaleTest.java 29 assertEquals(Locale.US, Locale.getDefault());
34 assertEquals(Locale.US, Locale.getDefault());
  /external/vogar/test/vogar/target/junit4/
ChangeDefaultLocaleTest.java 22 import static org.junit.Assert.assertEquals;
33 assertEquals(Locale.US, Locale.getDefault());
39 assertEquals(Locale.US, Locale.getDefault());

Completed in 392 milliseconds

1 2 3 4 5 6 7 8 91011>>