TestCase            5 modules/core/misc/java/test/DMatchTest.java import junit.framework.TestCase;
TestCase            7 modules/core/misc/java/test/DMatchTest.java public class DMatchTest extends TestCase {
TestCase           12 modules/java/android_test/src/org/opencv/test/OpenCVTestCase.java import junit.framework.TestCase;
TestCase           28 modules/java/android_test/src/org/opencv/test/OpenCVTestCase.java public class OpenCVTestCase extends TestCase {
TestCase          205 modules/java/android_test/src/org/opencv/test/OpenCVTestCase.java         TestCase.fail(msg);
TestCase           16 modules/java/pure_test/src/org/opencv/test/OpenCVTestCase.java import junit.framework.TestCase;
TestCase           30 modules/java/pure_test/src/org/opencv/test/OpenCVTestCase.java public class OpenCVTestCase extends TestCase {
TestCase          235 modules/java/pure_test/src/org/opencv/test/OpenCVTestCase.java         TestCase.fail(msg);
TestCase         10449 modules/ts/include/opencv2/ts/ts_gtest.h template <class TestCase>
TestCase         10451 modules/ts/include/opencv2/ts/ts_gtest.h     : public TestMetaFactoryBase<typename TestCase::ParamType> {
TestCase         10453 modules/ts/include/opencv2/ts/ts_gtest.h   typedef typename TestCase::ParamType ParamType;
TestCase         10458 modules/ts/include/opencv2/ts/ts_gtest.h     return new ParameterizedTestFactory<TestCase>(parameter);
TestCase         10503 modules/ts/include/opencv2/ts/ts_gtest.h template <class TestCase>
TestCase         10509 modules/ts/include/opencv2/ts/ts_gtest.h   typedef typename TestCase::ParamType ParamType;
TestCase         10519 modules/ts/include/opencv2/ts/ts_gtest.h   virtual TypeId GetTestCaseTypeId() const { return GetTypeId<TestCase>(); }
TestCase         10574 modules/ts/include/opencv2/ts/ts_gtest.h               TestCase::SetUpTestCase,
TestCase         10575 modules/ts/include/opencv2/ts/ts_gtest.h               TestCase::TearDownTestCase,
TestCase         10628 modules/ts/include/opencv2/ts/ts_gtest.h   template <class TestCase>
TestCase         10629 modules/ts/include/opencv2/ts/ts_gtest.h   ParameterizedTestCaseInfo<TestCase>* GetTestCasePatternHolder(
TestCase         10633 modules/ts/include/opencv2/ts/ts_gtest.h     ParameterizedTestCaseInfo<TestCase>* typed_test_info = NULL;
TestCase         10637 modules/ts/include/opencv2/ts/ts_gtest.h         if ((*it)->GetTestCaseTypeId() != GetTypeId<TestCase>()) {
TestCase         10648 modules/ts/include/opencv2/ts/ts_gtest.h               ParameterizedTestCaseInfo<TestCase> >(*it);
TestCase         10654 modules/ts/include/opencv2/ts/ts_gtest.h       typed_test_info = new ParameterizedTestCaseInfo<TestCase>(test_case_name);
TestCase         17650 modules/ts/include/opencv2/ts/ts_gtest.h class TestCase;
TestCase         18019 modules/ts/include/opencv2/ts/ts_gtest.h   friend class TestCase;
TestCase         18160 modules/ts/include/opencv2/ts/ts_gtest.h   friend class TestCase;
TestCase         18223 modules/ts/include/opencv2/ts/ts_gtest.h class GTEST_API_ TestCase {
TestCase         18237 modules/ts/include/opencv2/ts/ts_gtest.h   TestCase(const char* name, const char* a_type_param,
TestCase         18242 modules/ts/include/opencv2/ts/ts_gtest.h   virtual ~TestCase();
TestCase         18323 modules/ts/include/opencv2/ts/ts_gtest.h   static void ClearTestCaseResult(TestCase* test_case) {
TestCase         18400 modules/ts/include/opencv2/ts/ts_gtest.h   GTEST_DISALLOW_COPY_AND_ASSIGN_(TestCase);
TestCase         18456 modules/ts/include/opencv2/ts/ts_gtest.h   virtual void OnTestCaseStart(const TestCase& test_case) = 0;
TestCase         18468 modules/ts/include/opencv2/ts/ts_gtest.h   virtual void OnTestCaseEnd(const TestCase& test_case) = 0;
TestCase         18496 modules/ts/include/opencv2/ts/ts_gtest.h   virtual void OnTestCaseStart(const TestCase& /*test_case*/) {}
TestCase         18500 modules/ts/include/opencv2/ts/ts_gtest.h   virtual void OnTestCaseEnd(const TestCase& /*test_case*/) {}
TestCase         18545 modules/ts/include/opencv2/ts/ts_gtest.h   friend class TestCase;
TestCase         18617 modules/ts/include/opencv2/ts/ts_gtest.h   const TestCase* current_test_case() const
TestCase         18687 modules/ts/include/opencv2/ts/ts_gtest.h   const TestCase* GetTestCase(int i) const;
TestCase         18729 modules/ts/include/opencv2/ts/ts_gtest.h   TestCase* GetMutableTestCase(int i);
TestCase          996 modules/ts/src/ts_gtest.cpp   const TestCase* GetTestCase(int i) const {
TestCase         1003 modules/ts/src/ts_gtest.cpp   TestCase* GetMutableTestCase(int i) {
TestCase         1052 modules/ts/src/ts_gtest.cpp   TestCase* GetTestCase(const char* test_case_name,
TestCase         1095 modules/ts/src/ts_gtest.cpp   void set_current_test_case(TestCase* a_current_test_case) {
TestCase         1122 modules/ts/src/ts_gtest.cpp     ForEach(test_cases_, TestCase::ClearTestCaseResult);
TestCase         1152 modules/ts/src/ts_gtest.cpp   const TestCase* current_test_case() const { return current_test_case_; }
TestCase         1259 modules/ts/src/ts_gtest.cpp   std::vector<TestCase*> test_cases_;
TestCase         1283 modules/ts/src/ts_gtest.cpp   TestCase* current_test_case_;
TestCase         1579 modules/ts/src/ts_gtest.cpp   void OnTestCaseStart(const TestCase& test_case) {
TestCase         1583 modules/ts/src/ts_gtest.cpp   void OnTestCaseEnd(const TestCase& test_case) {
TestCase         1821 modules/ts/src/ts_gtest.cpp static int SumOverTestCaseList(const std::vector<TestCase*>& case_list,
TestCase         1822 modules/ts/src/ts_gtest.cpp                                int (TestCase::*method)() const) {
TestCase         1831 modules/ts/src/ts_gtest.cpp static bool TestCasePassed(const TestCase* test_case) {
TestCase         1836 modules/ts/src/ts_gtest.cpp static bool TestCaseFailed(const TestCase* test_case) {
TestCase         1842 modules/ts/src/ts_gtest.cpp static bool ShouldRunTestCase(const TestCase* test_case) {
TestCase         2230 modules/ts/src/ts_gtest.cpp   return SumOverTestCaseList(test_cases_, &TestCase::successful_test_count);
TestCase         2235 modules/ts/src/ts_gtest.cpp   return SumOverTestCaseList(test_cases_, &TestCase::failed_test_count);
TestCase         2241 modules/ts/src/ts_gtest.cpp                              &TestCase::reportable_disabled_test_count);
TestCase         2246 modules/ts/src/ts_gtest.cpp   return SumOverTestCaseList(test_cases_, &TestCase::disabled_test_count);
TestCase         2251 modules/ts/src/ts_gtest.cpp   return SumOverTestCaseList(test_cases_, &TestCase::reportable_test_count);
TestCase         2256 modules/ts/src/ts_gtest.cpp   return SumOverTestCaseList(test_cases_, &TestCase::total_test_count);
TestCase         2261 modules/ts/src/ts_gtest.cpp   return SumOverTestCaseList(test_cases_, &TestCase::test_to_run_count);
TestCase         3447 modules/ts/src/ts_gtest.cpp   const TestCase* const test_case = impl->current_test_case();
TestCase         3847 modules/ts/src/ts_gtest.cpp int TestCase::successful_test_count() const {
TestCase         3852 modules/ts/src/ts_gtest.cpp int TestCase::failed_test_count() const {
TestCase         3857 modules/ts/src/ts_gtest.cpp int TestCase::reportable_disabled_test_count() const {
TestCase         3862 modules/ts/src/ts_gtest.cpp int TestCase::disabled_test_count() const {
TestCase         3867 modules/ts/src/ts_gtest.cpp int TestCase::reportable_test_count() const {
TestCase         3872 modules/ts/src/ts_gtest.cpp int TestCase::test_to_run_count() const {
TestCase         3877 modules/ts/src/ts_gtest.cpp int TestCase::total_test_count() const {
TestCase         3890 modules/ts/src/ts_gtest.cpp TestCase::TestCase(const char* a_name, const char* a_type_param,
TestCase         3902 modules/ts/src/ts_gtest.cpp TestCase::~TestCase() {
TestCase         3909 modules/ts/src/ts_gtest.cpp const TestInfo* TestCase::GetTestInfo(int i) const {
TestCase         3916 modules/ts/src/ts_gtest.cpp TestInfo* TestCase::GetMutableTestInfo(int i) {
TestCase         3923 modules/ts/src/ts_gtest.cpp void TestCase::AddTestInfo(TestInfo * test_info) {
TestCase         3929 modules/ts/src/ts_gtest.cpp void TestCase::Run() {
TestCase         3940 modules/ts/src/ts_gtest.cpp       this, &TestCase::RunSetUpTestCase, "SetUpTestCase()");
TestCase         3950 modules/ts/src/ts_gtest.cpp       this, &TestCase::RunTearDownTestCase, "TearDownTestCase()");
TestCase         3957 modules/ts/src/ts_gtest.cpp void TestCase::ClearResult() {
TestCase         3963 modules/ts/src/ts_gtest.cpp void TestCase::ShuffleTests(internal::Random* random) {
TestCase         3968 modules/ts/src/ts_gtest.cpp void TestCase::UnshuffleTests() {
TestCase         4204 modules/ts/src/ts_gtest.cpp   virtual void OnTestCaseStart(const TestCase& test_case);
TestCase         4208 modules/ts/src/ts_gtest.cpp   virtual void OnTestCaseEnd(const TestCase& test_case);
TestCase         4269 modules/ts/src/ts_gtest.cpp void PrettyUnitTestResultPrinter::OnTestCaseStart(const TestCase& test_case) {
TestCase         4320 modules/ts/src/ts_gtest.cpp void PrettyUnitTestResultPrinter::OnTestCaseEnd(const TestCase& test_case) {
TestCase         4347 modules/ts/src/ts_gtest.cpp     const TestCase& test_case = *unit_test.GetTestCase(i);
TestCase         4423 modules/ts/src/ts_gtest.cpp   virtual void OnTestCaseStart(const TestCase& test_case);
TestCase         4427 modules/ts/src/ts_gtest.cpp   virtual void OnTestCaseEnd(const TestCase& test_case);
TestCase         4486 modules/ts/src/ts_gtest.cpp GTEST_REPEATER_METHOD_(OnTestCaseStart, TestCase)
TestCase         4493 modules/ts/src/ts_gtest.cpp GTEST_REVERSE_REPEATER_METHOD_(OnTestCaseEnd, TestCase)
TestCase         4574 modules/ts/src/ts_gtest.cpp                                const TestCase& test_case);
TestCase         4842 modules/ts/src/ts_gtest.cpp                                                 const TestCase& test_case) {
TestCase         5240 modules/ts/src/ts_gtest.cpp const TestCase* UnitTest::GetTestCase(int i) const {
TestCase         5252 modules/ts/src/ts_gtest.cpp TestCase* UnitTest::GetMutableTestCase(int i) {
TestCase         5448 modules/ts/src/ts_gtest.cpp const TestCase* UnitTest::current_test_case() const
TestCase         5543 modules/ts/src/ts_gtest.cpp   ForEach(test_cases_, internal::Delete<TestCase>);
TestCase         5661 modules/ts/src/ts_gtest.cpp   bool operator()(const TestCase* test_case) const {
TestCase         5681 modules/ts/src/ts_gtest.cpp TestCase* UnitTestImpl::GetTestCase(const char* test_case_name,
TestCase         5686 modules/ts/src/ts_gtest.cpp   const std::vector<TestCase*>::const_iterator test_case =
TestCase         5694 modules/ts/src/ts_gtest.cpp   TestCase* const new_test_case =
TestCase         5695 modules/ts/src/ts_gtest.cpp       new TestCase(test_case_name, type_param, set_up_tc, tear_down_tc);
TestCase         5976 modules/ts/src/ts_gtest.cpp     TestCase* const test_case = test_cases_[i];
TestCase         6050 modules/ts/src/ts_gtest.cpp     const TestCase* const test_case = test_cases_[i];