diff options
Diffstat (limited to 'Sencha-lang/Tests/TestSuite.cpp')
-rw-r--r-- | Sencha-lang/Tests/TestSuite.cpp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/Sencha-lang/Tests/TestSuite.cpp b/Sencha-lang/Tests/TestSuite.cpp index f50531c..a23181d 100644 --- a/Sencha-lang/Tests/TestSuite.cpp +++ b/Sencha-lang/Tests/TestSuite.cpp @@ -12,18 +12,12 @@ TestSuite::TestSuite() { tests_passed = 0; tests_failed = 0; tests = 0; - } - TestSuite::~TestSuite() { //Do nothing } -std::string TestSuite::all_tests() -{ - return ""; -} void TestSuite::run_tests() { @@ -40,5 +34,5 @@ void TestSuite::run_tests() } std::cout << tests_passed << " TESTS PASSED\n"; std::cout << tests_failed << " TESTS FAILED\n"; - std::cout << "ALL TESTS: " << tests << std::endl; + std::cout << "ALL TESTS: " << tests << std::endl << std::endl; } |