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

1 2 3 4 5 6 7 8 9

  /art/test/003-omnibus-opcodes/src/
InternedString.java 39 Main.assertTrue(strRef.get() == null);
47 Main.assertTrue(CONST == CONST.intern());
49 Main.assertTrue(strRef.get() != null);
57 Main.assertTrue(strRef.get() == CONST);
Monitor.java 29 Main.assertTrue(obj == null);
43 Main.assertTrue(false);
55 Main.assertTrue(mVal == 2);
MethodCall.java 29 Main.assertTrue(val == 7);
46 Main.assertTrue(a0 == 0);
47 Main.assertTrue(a9 > 8.99 && a9 < 9.01);
48 Main.assertTrue(a16 == -16);
49 Main.assertTrue(a25 == 25);
50 Main.assertTrue(a29.equals("twenty nine"));
63 Main.assertTrue(false);
  /cts/tests/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilitySettingsTest.java 44 assertTrue(message, !resolvedActivities.isEmpty());
  /cts/tests/tests/text/src/android/text/cts/
LoginFilter_PasswordFilterGMailTest.java 35 assertTrue(passwordFilterGMail.isAllowed('a'));
36 assertTrue(passwordFilterGMail.isAllowed((char) 200));
44 assertTrue(passwordFilterGMail.isAllowed((char) 32));
46 assertTrue(passwordFilterGMail.isAllowed((char) 127));
50 assertTrue(passwordFilterGMail.isAllowed((char) 160));
52 assertTrue(passwordFilterGMail.isAllowed((char) 255));
  /external/chromium_org/v8/test/intl/
assert.js 115 function assertTrue(value) {
  /art/test/406-fields/src/
TestCase.java 50 public static void assertTrue(String message, boolean condition) {
56 public static void assertTrue(boolean condition) {
57 assertTrue("Expected true", condition);
91 assertTrue(Arrays.equals(expected, actual));
  /art/test/407-arrays/src/
TestCase.java 50 public static void assertTrue(String message, boolean condition) {
56 public static void assertTrue(boolean condition) {
57 assertTrue("Expected true", condition);
91 assertTrue(Arrays.equals(expected, actual));
  /cts/hostsidetests/monkey/src/com/android/cts/monkey/
PackageTest.java 33 assertTrue(out, ALLOW_MONKEY.matcher(out).find());
38 assertTrue(out, ALLOW_CHIMP.matcher(out).find());
44 assertTrue(out, ALLOW_MONKEY.matcher(out).find());
45 assertTrue(out, ALLOW_CHIMP.matcher(out).find());
  /cts/tests/tests/animation/src/android/animation/cts/
FloatEvaluatorTest.java 29 assertTrue(result >= (fraction*start));
30 assertTrue(result <= (fraction*end));
IntEvaluatorTest.java 38 assertTrue(result >= (fraction*start));
39 assertTrue(result <= (fraction*end));
  /cts/tests/tests/calendarcommon/src/android/calendarcommon2/cts/
Calendarcommon2Test.java 40 assertTrue(properties == null);
48 assertTrue(properties.size() == 1);
  /cts/tests/tests/media/src/android/media/cts/
CameraProfileTest.java 33 assertTrue(low >= 0 && low <= 100);
34 assertTrue(mid >= 0 && mid <= 100);
35 assertTrue(high >= 0 && high <= 100);
36 assertTrue(low <= mid && mid <= high);
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/const_string/
Test_const_string.java 33 assertTrue(s == s2);
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/const_string_jumbo/
Test_const_string_jumbo.java 33 assertTrue(s == s2);
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/spec/
EncodedKeySpecTest.java 66 assertTrue(result);
86 assertTrue(ek[3] == (byte) 4);
107 assertTrue(ek1[3] == (byte) 4);
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
CodeSigner_ImplTest.java 47 assertTrue(new CodeSigner(cpath, ts).hashCode() == (cpath.hashCode() ^ ts
49 assertTrue(new CodeSigner(cpath, null).hashCode() == cpath.hashCode());
Timestamp_ImplTest.java 46 assertTrue(new Timestamp(now, cpath).hashCode() == (now.hashCode() ^ cpath
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
ViewportTest.java 53 assertTrue(Math.abs(evaluateIntegerValue("window.innerWidth") - viewportWidth) <= 1);
54 assertTrue(viewportWidth >= 979);
55 assertTrue(viewportWidth <= Math.max(981, metrics.widthPixels / metrics.density + 1));
  /external/chromium_org/ui/webui/resources/js/
webui_resource_test.js 28 function assertTrue(observed, opt_message) {
107 assertTrue(key in observed, opt_message);
111 assertTrue(key in expected, opt_message);
  /art/test/021-string2/src/junit/framework/
Assert.java 18 static public void assertTrue(String message, boolean condition) {
26 static public void assertTrue(boolean condition) {
27 assertTrue(null, condition);
34 assertTrue(message, !condition);
220 assertTrue(message, object != null);
233 assertTrue(message, object == null);
  /art/test/082-inline-execute/src/junit/framework/
Assert.java 18 static public void assertTrue(String message, boolean condition) {
26 static public void assertTrue(boolean condition) {
27 assertTrue(null, condition);
34 assertTrue(message, !condition);
220 assertTrue(message, object != null);
233 assertTrue(message, object == null);
  /cts/tests/tests/content/src/android/content/pm/cts/
ApplicationInfo_DisplayNameComparatorTest.java 57 assertTrue((mDisplayNameComparator.compare(info1, info2) < 0));
62 assertTrue((mDisplayNameComparator.compare(info1, info2) > 0));
  /cts/tests/tests/location/src/android/location/cts/
GpsStatusTest.java 44 assertTrue(maxSatellites > 0);
53 assertTrue(count <= maxSatellites);
  /cts/tools/vm-tests-tf/src/dot/junit/
DxAbstractMain.java 135 static public void assertTrue(boolean condition) {

Completed in 761 milliseconds

1 2 3 4 5 6 7 8 9