You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
739 B

10 years ago
#include <chrono>
#include <string>
#include "Jupiter/Functions.h"
#include "Jupiter/CString.h"
#include "Jupiter/String.h"
#include "Jupiter/File.h"
#include "Jupiter/Base64.h"
#include "Jupiter/InvalidIndex.h"
#include "Jupiter/Reference_String.h"
10 years ago
using namespace Jupiter;
unsigned int goodTests = 0;
unsigned int totalTests = 0;
void test(bool expr)
{
totalTests++;
if (expr) goodTests++;
else printf("Test number %u failed!" ENDL, totalTests);
}
10 years ago
int main()
{
if (goodTests == totalTests) printf("All %u tests succeeded." ENDL, totalTests);
else printf("ERROR: Only %u/%u tests succeeded. %u tests failed." ENDL, goodTests, totalTests, totalTests - goodTests);
10 years ago
#if defined _WIN32
system("pause");
#endif // _WIN32
return 0;
}