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.
 
 
 

33 lines
826 B

#include <chrono>
#include <string>
#include <iostream>
#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"
#include "Jupiter/DataBuffer.h"
using namespace Jupiter;
using namespace Jupiter::literals;
unsigned int goodTests = 0;
unsigned int totalTests = 0;
void test(bool expr)
{
totalTests++;
if (expr) goodTests++;
else printf("Test number %u failed!" ENDL, totalTests);
}
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);
puts("Press any key to continue...");
fgetc(stdin);
return 0;
}