/external/ComputeLibrary/tests/framework/ |
D | TestCaseFactory.h | 40 class TestCaseFactory 64 …TestCaseFactory(std::string suite_name, std::string name, DatasetMode mode, Status status, std::st… 67 virtual ~TestCaseFactory() = default; 103 class SimpleTestCaseFactory final : public TestCaseFactory 107 using TestCaseFactory::TestCaseFactory; 114 class DataTestCaseFactory final : public TestCaseFactory 134 inline TestCaseFactory::TestCaseFactory(std::string suite_name, std::string test_name, DatasetMode … in TestCaseFactory() function 140 inline std::string TestCaseFactory::name() const in name() 152 inline DatasetMode TestCaseFactory::mode() const in mode() 157 inline TestCaseFactory::Status TestCaseFactory::status() const in status() [all …]
|
D | Macros.h | 181 TEST_CASE_IMPL(TEST_NAME, MODE, arm_compute::test::framework::TestCaseFactory::Status::ACTIVE) 183 …TEST_CASE_IMPL(TEST_NAME, MODE, arm_compute::test::framework::TestCaseFactory::Status::EXPECTED_FA… 185 TEST_CASE_IMPL(TEST_NAME, MODE, arm_compute::test::framework::TestCaseFactory::Status::DISABLED) 208 …DATA_TEST_CASE_IMPL(TEST_NAME, MODE, arm_compute::test::framework::TestCaseFactory::Status::ACTIVE… 210 …DATA_TEST_CASE_IMPL(TEST_NAME, MODE, arm_compute::test::framework::TestCaseFactory::Status::EXPECT… 212 …DATA_TEST_CASE_IMPL(TEST_NAME, MODE, arm_compute::test::framework::TestCaseFactory::Status::DISABL… 227 …FIXTURE_TEST_CASE_IMPL(TEST_NAME, FIXTURE, MODE, arm_compute::test::framework::TestCaseFactory::St… 229 …FIXTURE_TEST_CASE_IMPL(TEST_NAME, FIXTURE, MODE, arm_compute::test::framework::TestCaseFactory::St… 231 …FIXTURE_TEST_CASE_IMPL(TEST_NAME, FIXTURE, MODE, arm_compute::test::framework::TestCaseFactory::St… 255 …ST_CASE_IMPL(TEST_NAME, FIXTURE, MODE, arm_compute::test::framework::TestCaseFactory::Status::ACTI… [all …]
|
D | Framework.h | 83 TestCaseFactory::Status status; /**< Test status */ 143 void add_test_case(std::string test_name, DatasetMode mode, TestCaseFactory::Status status); 154 …void add_data_test_case(std::string test_name, DatasetMode mode, TestCaseFactory::Status status, s… 333 void run_test(const TestInfo &info, TestCaseFactory &test_factory); 351 std::vector<std::unique_ptr<TestCaseFactory>> _test_factories{}; 374 inline void Framework::add_test_case(std::string test_name, DatasetMode mode, TestCaseFactory::Stat… in add_test_case() 380 inline void Framework::add_data_test_case(std::string test_name, DatasetMode mode, TestCaseFactory:… in add_data_test_case()
|
D | Registrars.h | 52 TestCaseRegistrar(std::string test_name, DatasetMode mode, TestCaseFactory::Status status); 62 …TestCaseRegistrar(std::string test_name, DatasetMode mode, TestCaseFactory::Status status, D &&dat… 80 …strar<T>::TestCaseRegistrar(std::string test_name, DatasetMode mode, TestCaseFactory::Status statu… in TestCaseRegistrar() 87 …strar<T>::TestCaseRegistrar(std::string test_name, DatasetMode mode, TestCaseFactory::Status statu… in TestCaseRegistrar()
|
D | TestCase.h | 58 friend class TestCaseFactory; variable
|
D | Framework.cpp | 231 …const bool is_expected_failure = _current_test_info->status == TestCaseFactory::Status::EXPECTED_F… in log_failed_expectation() 295 void Framework::run_test(const TestInfo &info, TestCaseFactory &test_factory) in run_test() 297 if(test_factory.status() == TestCaseFactory::Status::DISABLED) in run_test() 320 const bool is_expected_failure = info.status == TestCaseFactory::Status::EXPECTED_FAILURE; in run_test() 522 if(info.status == TestCaseFactory::Status::EXPECTED_FAILURE) in run_test()
|
/external/vogar/src/vogar/target/junit/junit3/ |
D | TestCaseTransformer.java | 45 private final TestCaseFactory<S, T> factory; 49 public TestCaseTransformer(TestCaseFactory<S, T> factory, Comparator<? super T> comparator) { in TestCaseTransformer()
|
D | TestCaseFactory.java | 30 public interface TestCaseFactory<S,T> { interface
|
D | TestCaseRunnerFactory.java | 60 public class TestCaseRunnerFactory implements TestCaseFactory<Runner, DescribableStatement> {
|
/external/jsoncpp/src/test_lib_json/ |
D | jsontest.h | 132 using TestCaseFactory = TestCase* (*)(); variable 139 Runner& add(TestCaseFactory factory); 171 using Factories = std::deque<TestCaseFactory>;
|
D | jsontest.cpp | 219 Runner& Runner::add(TestCaseFactory factory) { in add()
|
D | main.cpp | 64 static std::deque<JsonTest::TestCaseFactory> local_;
|
/external/ComputeLibrary/tests/benchmark_examples/ |
D | RunExample.cpp | 183 …(argv[0], framework::DatasetMode::ALL, arm_compute::test::framework::TestCaseFactory::Status::ACTI… in run_example() 185 …argv[0]), framework::DatasetMode::ALL, arm_compute::test::framework::TestCaseFactory::Status::ACTI… in run_example()
|
/external/testng/src/test/java/test/tmp/ |
D | TestCaseFactory.java | 6 public class TestCaseFactory { class
|
/external/ComputeLibrary/tests/validate_examples/ |
D | RunExample.cpp | 206 …argv[0]), framework::DatasetMode::ALL, arm_compute::test::framework::TestCaseFactory::Status::ACTI… in run_example() 210 …argv[0]), framework::DatasetMode::ALL, arm_compute::test::framework::TestCaseFactory::Status::ACTI… in run_example()
|