Searched refs:CTest (Results 1 – 25 of 77) sorted by relevance
1234
/external/python/cpython2/Lib/json/tests/ |
D | test_speedups.py | 1 from json.tests import CTest 9 class TestSpeedups(CTest): 20 class TestDecode(CTest): 33 class TestEncode(CTest):
|
D | test_default.py | 1 from json.tests import PyTest, CTest 12 class TestCDefault(TestDefault, CTest): pass
|
D | test_pass2.py | 1 from json.tests import PyTest, CTest 18 class TestCPass2(TestPass2, CTest): pass
|
D | test_pass3.py | 1 from json.tests import PyTest, CTest 24 class TestCPass3(TestPass3, CTest): pass
|
D | test_pass1.py | 1 from json.tests import PyTest, CTest 75 class TestCPass1(TestPass1, CTest): pass
|
D | test_separators.py | 2 from json.tests import PyTest, CTest 44 class TestCSeparators(TestSeparators, CTest): pass
|
D | test_fail.py | 1 from json.tests import PyTest, CTest 105 class TestCFail(TestFail, CTest): pass
|
D | test_encode_basestring_ascii.py | 2 from json.tests import PyTest, CTest 41 class TestCEncodeBasestringAscii(TestEncodeBasestringAscii, CTest): pass
|
D | test_dump.py | 2 from json.tests import PyTest, CTest 32 class TestCDump(TestDump, CTest): pass
|
D | test_check_circular.py | 1 from json.tests import PyTest, CTest 34 class TestCCheckCircular(TestCheckCircular, CTest): pass
|
D | test_indent.py | 3 from json.tests import PyTest, CTest 60 class TestCIndent(TestIndent, CTest): pass
|
/external/python/cpython3/Lib/test/ |
D | test_univnewlines.py | 33 class CTest: class 94 class CTestCRNewlines(CTest, TestCRNewlines, unittest.TestCase): pass 100 class CTestLFNewlines(CTest, TestLFNewlines, unittest.TestCase): pass 113 class CTestCRLFNewlines(CTest, TestCRLFNewlines, unittest.TestCase): pass 119 class CTestMixedNewlines(CTest, TestMixedNewlines, unittest.TestCase): pass
|
/external/python/cpython3/Lib/test/test_json/ |
D | test_speedups.py | 1 from test.test_json import CTest 9 class TestSpeedups(CTest): 21 class TestDecode(CTest): 32 class TestEncode(CTest):
|
D | test_default.py | 1 from test.test_json import PyTest, CTest 12 class TestCDefault(TestDefault, CTest): pass
|
D | test_pass2.py | 1 from test.test_json import PyTest, CTest 18 class TestCPass2(TestPass2, CTest): pass
|
D | test_pass1.py | 1 from test.test_json import PyTest, CTest 75 class TestCPass1(TestPass1, CTest): pass
|
D | test_pass3.py | 1 from test.test_json import PyTest, CTest 24 class TestCPass3(TestPass3, CTest): pass
|
D | test_separators.py | 2 from test.test_json import PyTest, CTest 50 class TestCSeparators(TestSeparators, CTest): pass
|
D | test_encode_basestring_ascii.py | 2 from test.test_json import PyTest, CTest 42 class TestCEncodeBasestringAscii(TestEncodeBasestringAscii, CTest):
|
D | test_float.py | 2 from test.test_json import PyTest, CTest 33 class TestCFloat(TestFloat, CTest): pass
|
D | test_dump.py | 2 from test.test_json import PyTest, CTest 53 class TestCDump(TestDump, CTest):
|
D | test_indent.py | 3 from test.test_json import PyTest, CTest 67 class TestCIndent(TestIndent, CTest): pass
|
/external/catch2/docs/ |
D | cmake-integration.md | 15 of `TEST_CASE`s in CTest 41 with automatically registering their `TEST_CASE`s with CTest. They 68 include(CTest) 129 Note that this variable is only available in CTest. 135 associated with the provided target, and registering them via CTest's 151 include(CTest) 166 class name to the test name in CTest. Defaults to `ON`. 168 name to the test name in CTest. Defaults to `ON`.
|
/external/catch2/contrib/ |
D | Catch.cmake | 16 tests, and will create a separate CTest test for each Catch test case. Note 19 However, it provides more fine-grained pass/fail information to CTest, which is 20 usually considered as more beneficial. By default, the CTest test name is the 25 Automatically add tests with CTest by querying the compiled test executable 50 through an external CTest script using the :prop_dir:`TEST_INCLUDE_FILES` 91 Note that this variable is only available in CTest.
|
/external/python/cpython2/Lib/test/ |
D | test_univnewlines.py | 124 class CTest(test): class 126 CTest.__name__ = str("C" + test.__name__) 130 tests.append(CTest)
|
1234