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

1 2 3

  /external/v8/test/mjsunit/
search-string-multiple.js 30 function TestCase(id, expected_output, regexp_source, flags, input) {
52 TestCase(1,
57 TestCase(2,
  /external/chromium/chrome/browser/
resources_util_unittest.cc 12 struct TestCase {
20 const TestCase kTestCases[] = {
  /frameworks/base/test-runner/src/android/test/
TestCase.java 35 public interface TestCase extends Runnable
  /external/embunit/inc/
TestCase.h 33 * $Id: TestCase.h,v 1.7 2004/02/10 16:19:29 arms22 Exp $
38 typedef struct __TestCase TestCase;
  /system/extras/tests/sdcard/
testcase.cpp 29 #include "testcase.h"
42 TestCase::TestCase(const char *appName)
69 TestCase::~TestCase()
78 bool TestCase::runTest()
109 write(mIpc[TestCase::WRITE_TO_PARENT], buffer, str - buffer);
142 void TestCase::setIter(size_t iter)
147 void TestCase::createTimers()
168 bool TestCase::setTypeFromName(const char *test_name
    [all...]
  /external/icu4c/test/intltest/
calcasts.h 27 struct TestCase {
42 void doTestCases(const TestCase *cases, Calendar *cal);
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_1/
shell.js 52 testcases[tc++] = new TestCase( SECTION, description, expect, actual );
55 function TestCase( n, d, e, a ) {
jsref.js 41 function TestCase( n, d, e, a ) {
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_3/
shell.js 33 testcases[tc++] = new TestCase( SECTION, description, expect, actual );
36 function TestCase( n, d, e, a ) {
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_4/
shell.js 31 testcases[tc++] = new TestCase( SECTION, description, expect, actual );
34 function TestCase( n, d, e, a ) {
jsref.js 39 function TestCase( n, d, e, a ) {
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_6/
browser.js 66 function TestCase(n, d, e, a)
87 var testcase = new TestCase(gTestName, description, expected, actual);
88 testcase.passed = _reportCompare(expected, actual, description);
96 var testcase;
100 testcase = testcases[tc - 1];
101 testcase.passed = false;
113 testcase = new TestCase(gTestName, DESCRIPTION, EXPECTED, "error");
117 testcase.passed = true
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/
MockAccessibilityService.java 30 import junit.framework.TestCase;
181 TestCase.assertEquals("addedCount has incorrect value", expectedEvent.getAddedCount(),
183 TestCase.assertEquals("beforeText has incorrect value", expectedEvent.getBeforeText(),
185 TestCase.assertEquals("checked has incorrect value", expectedEvent.isChecked(),
187 TestCase.assertEquals("className has incorrect value", expectedEvent.getClassName(),
189 TestCase.assertEquals("contentDescription has incorrect value", expectedEvent
191 TestCase.assertEquals("currentItemIndex has incorrect value", expectedEvent
193 TestCase.assertEquals("enabled has incorrect value", expectedEvent.isEnabled(),
195 TestCase.assertEquals("eventType has incorrect value", expectedEvent.getEventType(),
197 TestCase.assertEquals("fromIndex has incorrect value", expectedEvent.getFromIndex()
    [all...]
  /external/chromium/chrome/common/extensions/
extension_file_util_unittest.cc 198 struct TestCase {
  /external/chromium/testing/gmock/test/
gmock_test_utils.py 102 # Exposes TestCase from gtest_test_utils.
103 TestCase = gtest_test_utils.TestCase
  /external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/
shell.js 55 testcases[tc++] = new TestCase( SECTION, description, expect, actual );
59 function TestCase( n, d, e, a ) {
jsref.js 51 testcases[tc++] = new TestCase( SECTION, description, expect, actual );
53 function TestCase( n, d, e, a ) {
  /dalvik/dx/src/junit/framework/
TestCase.java 7 * 1) implement a subclass of TestCase<br>
15 * public class MathTest extends TestCase {
40 * TestCase test= new MathTest("add") {
52 * TestCase= new MathTest("testAdd");
70 public abstract class TestCase extends Assert implements Test {
80 public TestCase() {
86 public TestCase(String name) {
184 * Gets the name of a TestCase
191 * Sets the name of a TestCase
  /external/chromium/net/base/
cookie_monster_perftest.cc 253 const struct TestCase {
287 const TestCase& test_case(test_cases[ci]);
  /external/chromium/testing/gmock/scripts/generator/cpp/
gmock_class_test.py 34 class TestCase(unittest.TestCase):
46 class GenerateMethodsTest(TestCase):
155 class GenerateMocksTest(TestCase):
  /external/chromium/testing/gtest/test/
gtest_test_utils.py 62 TestCase = _test_module.TestCase # pylint: disable-msg=C6409
  /external/junit/src/junit/framework/
TestCase.java 9 * 1) implement a subclass of TestCase<br>
17 * public class MathTest extends TestCase {
42 * TestCase test= new MathTest("add") {
54 * TestCase test= new MathTest("testAdd");
72 public abstract class TestCase extends Assert implements Test {
82 public TestCase() {
88 public TestCase(String name) {
194 * Gets the name of a TestCase
201 * Sets the name of a TestCase
  /external/protobuf/gtest/test/
gtest_test_utils.py 61 TestCase = _test_module.TestCase # pylint: disable-msg=C6409
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_2/
shell.js 59 function TestCase( n, d, e, a ) {
203 testcases[tc++] = new TestCase( SECTION, description, expect, actual );
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
ExportTestProvider.java 32 import junit.framework.TestCase;
100 TestCase.assertTrue(uri != null);
101 TestCase.assertTrue(ContentResolver.SCHEME_CONTENT.equals(uri.getScheme()));
103 TestCase.assertTrue(RawContacts.CONTENT_URI.getAuthority().equals(authority));
104 TestCase.assertTrue((Data.CONTACT_ID + "=?").equals(selection));
105 TestCase.assertEquals(1, selectionArgs.length);
107 TestCase.assertTrue(id >= 0);
108 TestCase.assertTrue(id < mContactEntryList.size());
116 TestCase.assertTrue(VCardVerifier.CONTACTS_TEST_CONTENT_URI.equals(uri));
118 TestCase.assertNull(selection)
    [all...]

Completed in 1174 milliseconds

1 2 3