HomeSort by relevance Sort by last modified time
    Searched full:suite (Results 376 - 400 of 5875) sorted by null

<<11121314151617181920>>

  /external/guava/guava-tests/test/com/google/common/collect/
ForwardingListTest.java 140 public static Test suite(){ method in class:ForwardingListTest
141 TestSuite suite = new TestSuite(); local
143 suite.addTestSuite(ForwardingListTest.class);
144 suite.addTest(ListTestSuiteBuilder.using(new TestStringListGenerator() {
153 suite.addTest(ListTestSuiteBuilder.using(new TestStringListGenerator() {
163 return suite;
ForwardingSetTest.java 107 public static Test suite(){ method in class:ForwardingSetTest
108 TestSuite suite = new TestSuite(); local
110 suite.addTestSuite(ForwardingSetTest.class);
111 suite.addTest(
122 suite.addTest(
133 return suite;
ForwardingMultisetTest.java 141 public static Test suite() { method in class:ForwardingMultisetTest
142 TestSuite suite = new TestSuite(); local
144 suite.addTestSuite(ForwardingMultisetTest.class);
145 suite.addTest(
156 suite.addTest(
168 suite.addTest(SetTestSuiteBuilder.using(new TestStringSetGenerator() {
264 return suite;
  /external/guava/guava-tests/test/com/google/common/primitives/
ByteArrayAsListTest.java 37 * Test suite covering {@link Bytes#asList(byte[])}.
52 public static Test suite() { method in class:ByteArrayAsListTest
68 TestSuite suite = new TestSuite(); local
70 suite.addTest(
78 return suite;
81 // Test generators. To let the GWT test suite generator access them, they need to be
CharArrayAsListTest.java 37 * Test suite covering {@link Chars#asList(char[])}.
52 public static Test suite() { method in class:CharArrayAsListTest
68 TestSuite suite = new TestSuite(); local
70 suite.addTest(
78 return suite;
81 // Test generators. To let the GWT test suite generator access them, they need to be
DoubleArrayAsListTest.java 37 * Test suite covering {@link Doubles#asList(double[])}.
52 public static Test suite() { method in class:DoubleArrayAsListTest
68 TestSuite suite = new TestSuite(); local
70 suite.addTest(
78 return suite;
81 // Test generators. To let the GWT test suite generator access them, they need to be
FloatArrayAsListTest.java 37 * Test suite covering {@link Floats#asList(float[])})}.
52 public static Test suite() { method in class:FloatArrayAsListTest
68 TestSuite suite = new TestSuite(); local
70 suite.addTest(
78 return suite;
81 // Test generators. To let the GWT test suite generator access them, they need to be
IntArrayAsListTest.java 37 * Test suite covering {@link Ints#asList(int[])}.
53 public static Test suite() { method in class:IntArrayAsListTest
69 TestSuite suite = new TestSuite(); local
71 suite.addTest(
79 return suite;
82 // Test generators. To let the GWT test suite generator access them, they need to be
LongArrayAsListTest.java 37 * Test suite covering {@link Longs#asList(long[])}.
52 public static Test suite() { method in class:LongArrayAsListTest
68 TestSuite suite = new TestSuite(); local
70 suite.addTest(
78 return suite;
81 // Test generators. To let the GWT test suite generator access them, they need to be
ShortArrayAsListTest.java 37 * Test suite covering {@link Shorts#asList(short[])}.
52 public static Test suite() { method in class:ShortArrayAsListTest
68 TestSuite suite = new TestSuite(); local
70 suite.addTest(
78 return suite;
81 // Test generators. To let the GWT test suite generator access them, they need to be
  /external/junit/src/org/junit/internal/runners/
JUnit38ClassRunner.java 158 TestSuite suite= (TestSuite) getTest(); local
159 TestSuite filtered= createCopyOfSuite(suite);
160 int n= suite.testCount();
162 Test test= suite.testAt(i);
190 protected TestSuite createCopyOfSuite(TestSuite suite) {
191 return new TestSuite(suite.getName());
  /external/libsepol/tests/
test-expander.c 193 int expander_add_tests(CU_pSuite suite)
195 if (NULL == CU_add_test(suite, "expander_indexes", test_expander_indexes)) {
200 if (NULL == CU_add_test(suite, "expander_attr_mapping", test_expander_attr_mapping)) {
205 if (NULL == CU_add_test(suite, "expander_role_mapping", test_expander_role_mapping)) {
209 if (NULL == CU_add_test(suite, "expander_user_mapping", test_expander_user_mapping)) {
213 if (NULL == CU_add_test(suite, "expander_alias", test_expander_alias)) {
  /external/llvm/docs/CommandGuide/
lit.rst 62 string if not given). The meaning and use of these parameters is test suite
122 suite take the most time to execute. Note that this option is most useful
177 In the :program:`lit` model, every test must exist inside some *test suite*.
182 how to find and run the tests inside the test suite.
189 allowing the test suite configuration to control exactly how tests are
191 suite they are in, and their relative path inside the test suite. For
210 suite.
253 suite*. Test suites serve to define the format of the tests they contain, the
262 Once a test suite is discovered, its config file is loaded. Config file
    [all...]
  /external/llvm/utils/lit/lit/
TestingConfig.py 8 TestingConfig - Information on the tests inside a suite.
127 # FIXME: This should really only be suite in test suite config
131 # FIXME: This should really only be suite in test suite config
138 """root attribute - The root configuration for the test suite."""
  /external/pixman/
README 73 suite should pass.
75 The exception here is if you are changing the test suite to
77 test suite fail due to the bug, and then another commit that fixes
80 You can run the test suite with
88 - For bug fixes, include an update to the test suite to make sure
92 suite. Also, add a program demonstrating the new feature to the
  /frameworks/base/test-runner/tests/src/android/test/
AndroidTestRunnerTest.java 148 // Use the test suite provided by the interface method rather than the static suite method.
204 public static Test suite() { method in class:AndroidTestRunnerTest.SampleTestSuiteProvider
205 return SampleTestSuite.suite();
210 public static TestSuite suite() { method in class:AndroidTestRunnerTest.SampleTestSuite
219 public static TestSuite suite() { method in class:AndroidTestRunnerTest.AndroidTestCaseTestSuite
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/bsddb/test/
test_distributed_transactions.py 141 suite = unittest.TestSuite()
143 suite.addTest(unittest.makeSuite(DBTxn_distributed))
144 suite.addTest(unittest.makeSuite(DBTxn_distributedSYNC))
146 suite.addTest(unittest.makeSuite(DBTxn_distributed_must_open_db))
147 suite.addTest(unittest.makeSuite(DBTxn_distributedSYNC_must_open_db))
148 return suite
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_threading_local.py 211 suite = unittest.TestSuite()
212 suite.addTest(DocTestSuite('_threading_local'))
213 suite.addTest(unittest.makeSuite(ThreadLocalTest))
214 suite.addTest(unittest.makeSuite(PyThreadingLocalTest))
227 suite.addTest(DocTestSuite('_threading_local',
231 test_support.run_unittest(suite)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/bsddb/test/
test_distributed_transactions.py 141 suite = unittest.TestSuite()
143 suite.addTest(unittest.makeSuite(DBTxn_distributed))
144 suite.addTest(unittest.makeSuite(DBTxn_distributedSYNC))
146 suite.addTest(unittest.makeSuite(DBTxn_distributed_must_open_db))
147 suite.addTest(unittest.makeSuite(DBTxn_distributedSYNC_must_open_db))
148 return suite
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_threading_local.py 211 suite = unittest.TestSuite()
212 suite.addTest(DocTestSuite('_threading_local'))
213 suite.addTest(unittest.makeSuite(ThreadLocalTest))
214 suite.addTest(unittest.makeSuite(PyThreadingLocalTest))
227 suite.addTest(DocTestSuite('_threading_local',
231 test_support.run_unittest(suite)
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/
README.txt 4 1- Run the unit tests as a full "eclipse plugin" suite
6 3. Run the functional tests as a full "eclipse plugin" suite (require a real SDK)
12 1- Running the unit tests as a full "eclipse plugin" suite
15 Steps to run the test suite:
73 3- Running the functional tests as a full "eclipse plugin" suite
76 Steps to run the test suite:
  /external/wpa_supplicant_8/src/rsn_supp/
wpa_ie.c 44 u32 suite; local
56 suite = wpa_cipher_to_suite(WPA_PROTO_WPA, group_cipher);
57 if (suite == 0) {
62 RSN_SELECTOR_PUT(pos, suite);
67 suite = wpa_cipher_to_suite(WPA_PROTO_WPA, pairwise_cipher);
68 if (suite == 0 ||
75 RSN_SELECTOR_PUT(pos, suite);
113 u32 suite; local
128 suite = wpa_cipher_to_suite(WPA_PROTO_RSN, group_cipher);
129 if (suite == 0)
    [all...]
  /external/wpa_supplicant_8/src/tls/
tlsv1_record.c 20 * tlsv1_record_set_cipher_suite - TLS record layer: Set cipher suite
22 * @cipher_suite: New cipher suite
25 * This function is used to prepare TLS record layer for cipher suite change.
33 const struct tls_cipher_suite *suite; local
36 wpa_printf(MSG_DEBUG, "TLSv1: Selected cipher suite: 0x%04x",
40 suite = tls_get_cipher_suite(cipher_suite);
41 if (suite == NULL)
44 if (suite->hash == TLS_HASH_MD5) {
47 } else if (suite->hash == TLS_HASH_SHA) {
50 } else if (suite->hash == TLS_HASH_SHA256)
    [all...]
  /external/llvm/docs/
TestingGuide.rst 36 The whole programs tests are referred to as the "LLVM test suite" (or
37 "test-suite") and are in the ``test-suite`` module in subversion. For
39 tests" in places, which is less ambiguous than "test-suite" and remains
56 ``test-suite``
59 The test suite contains whole programs, which are pieces of code which
74 The test-suite is located in the ``test-suite`` Subversion module.
79 The test suite contains tests to check quality of debugging information.
84 test suite for more information . This test suite is located in th
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/performance_tests/
perftestsrunner_unittest.py 91 runner, port = self.create_runner(args=['Suite/Test1.html', 'Suite/SkippedTest1.html', 'SkippedSuite/Test1.html'])
95 self._add_file(runner, 'Suite', 'Test1.html')
96 self._add_file(runner, 'Suite', 'Test2.html')
97 self._add_file(runner, 'Suite', 'SkippedTest1.html')
98 self._add_file(runner, 'Suite', 'SkippedTest2.html')
99 port.skipped_perf_tests = lambda: ['Suite/SkippedTest1.html', 'Suite/SkippedTest1.html', 'SkippedSuite']
101 ['SkippedSuite/Test1.html', 'Suite/SkippedTest1.html', 'Suite/Test1.html']
    [all...]

Completed in 1473 milliseconds

<<11121314151617181920>>