Unit Tests
- Corrected test output for skipped, pass and fail tests.
This commit is contained in:
@@ -25,10 +25,8 @@
|
|||||||
//
|
//
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
#include <cmake.h>
|
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
#include <iomanip>
|
#include <iomanip>
|
||||||
#include <stdlib.h>
|
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <math.h>
|
#include <math.h>
|
||||||
#include <test.h>
|
#include <test.h>
|
||||||
@@ -405,7 +403,7 @@ void UnitTest::pass (const std::string& text)
|
|||||||
++_passed;
|
++_passed;
|
||||||
std::cout << "ok "
|
std::cout << "ok "
|
||||||
<< _counter
|
<< _counter
|
||||||
<< " "
|
<< " - "
|
||||||
<< text
|
<< text
|
||||||
<< "\n";
|
<< "\n";
|
||||||
}
|
}
|
||||||
@@ -417,7 +415,7 @@ void UnitTest::fail (const std::string& text)
|
|||||||
++_failed;
|
++_failed;
|
||||||
std::cout << "not ok "
|
std::cout << "not ok "
|
||||||
<< _counter
|
<< _counter
|
||||||
<< " "
|
<< " - "
|
||||||
<< text
|
<< text
|
||||||
<< "\n";
|
<< "\n";
|
||||||
}
|
}
|
||||||
@@ -429,7 +427,7 @@ void UnitTest::skip (const std::string& text)
|
|||||||
++_skipped;
|
++_skipped;
|
||||||
std::cout << "skip "
|
std::cout << "skip "
|
||||||
<< _counter
|
<< _counter
|
||||||
<< " "
|
<< " - "
|
||||||
<< text
|
<< text
|
||||||
<< "\n";
|
<< "\n";
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user