mirror of
https://github.com/jezhiggins/arabica
synced 2024-11-17 07:48:50 +01:00
25 lines
664 B
C++
25 lines
664 B
C++
#ifndef ARABICA_UTIL_TEST_SUITE_HPP
|
|
#define ARABICA_UTIL_TEST_SUITE_HPP
|
|
|
|
#include "../CppUnit/TestRunner.hpp"
|
|
#include "../CppUnit/framework/Test.h"
|
|
#include "../CppUnit/framework/TestSuite.h"
|
|
|
|
#include "test_normalize_whitespace.hpp"
|
|
#include "test_base64.hpp"
|
|
#include "test_uri.hpp"
|
|
|
|
template<class string_type, class string_adaptor>
|
|
void Util_test_suite(int argc, const char** argv)
|
|
{
|
|
TestRunner runner;
|
|
|
|
runner.addTest("NormalizeWhitespaceTest", NormalizeWhitespaceTest_suite<string_type, string_adaptor >());
|
|
runner.addTest("Base64Test", Base64Test_suite());
|
|
runner.addTest("URITest", URITest_suite());
|
|
|
|
runner.run(argc, argv);
|
|
} // main
|
|
|
|
#endif
|
|
|