#include <iostream> #include <j/cppunit/cppunit.hpp> #include "ut_array_list.cpp" #include "ut_assertion_error.cpp" #include "ut_dl.cpp" #include "ut_env.cpp" #include "ut_errno.cpp" #include "ut_exception.cpp" #include "ut_illegal_argument_exception.cpp" #include "ut_index_out_of_bounds_exception.cpp" #include "ut_runtime_exception.cpp" #include "ut_string.cpp" #include "ut_term.cpp" #include "ut_thread.cpp" #include "ut_throwable.cpp" #include "ut_unsupported_operation_exception.cpp" using namespace j; using namespace j::cppunit; int main() { { ArrayListTest tc; tc.suite(); } { AssertionErrorTest tc; tc.suite(); } { DlTest tc; tc.suite(); } { EnvTest tc; tc.suite(); } { ErrnoTest tc; tc.suite(); } { ExceptionTest tc; tc.suite(); } { IllegalArgumentExceptionTest tc; tc.suite(); } { IndexOutOfBoundsExceptionTest tc; tc.suite(); } { RuntimeExceptionTest tc; tc.suite(); } { StringTest tc; tc.suite(); } { TermTest tc; tc.suite(); } { ThreadTest tc; tc.suite(); } { ThrowableTest tc; tc.suite(); } { UnsupportedOperationExceptionTest tc; tc.suite(); } testManager.printResult(); return 0; }