From: Francesco Montorsi Date: Sat, 21 Mar 2009 00:06:32 +0000 (+0000) Subject: allow to give the testcase name without the final 'TestCase' postfix X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/6d423df04938023e0b74c2ac0c058c10ef6b438a allow to give the testcase name without the final 'TestCase' postfix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@59679 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/tests/test.cpp b/tests/test.cpp index 00d746b2f8..afc4ad2ab5 100644 --- a/tests/test.cpp +++ b/tests/test.cpp @@ -231,16 +231,23 @@ int TestApp::OnRun() { CppUnit::TextTestRunner runner; - for (size_t i = 0; i < m_registries.size(); i++) { - auto_ptr test(m_registries[i].empty() ? + for (size_t i = 0; i < m_registries.size(); i++) + { + std::string reg = m_registries[i]; + if (!reg.empty() && !wxString(reg).EndsWith("TestCase")) + reg += "TestCase"; + // allow the user to specify the name of the testcase "in short form" + // (all wx test cases end with TestCase postfix) + + auto_ptr test(reg.empty() ? TestFactoryRegistry::getRegistry().makeTest() : - TestFactoryRegistry::getRegistry(m_registries[i]).makeTest()); + TestFactoryRegistry::getRegistry(reg).makeTest()); TestSuite *suite = dynamic_cast(test.get()); if (suite && suite->countTestCases() == 0) wxLogError(_T("No such test suite: %s"), - wxString(m_registries[i].c_str(), wxConvUTF8).c_str()); + wxString(reg.c_str(), wxConvUTF8).c_str()); else if (m_list) List(test.get()); else