]> git.mdlowis.com Git - projs/libcds.git/commit
Added new makefile and unit test framework
authorMike D. Lowis <mike@mdlowis.com>
Mon, 4 Jun 2012 15:44:27 +0000 (11:44 -0400)
committerMike D. Lowis <mike@mdlowis.com>
Mon, 4 Jun 2012 15:44:27 +0000 (11:44 -0400)
commit0c0146f5038b9290a26fbc956a79c5646645d379
tree6b8918d9d8e6667189c955b331484a00eaa367a5
parent0dbf547b8228b22e106daa5758f60b08b45936cd
Added new makefile and unit test framework
72 files changed:
Makefile [new file with mode: 0644]
build/DUMMY [deleted file]
tests/main.cpp [new file with mode: 0644]
tools/UnitTest++/COPYING [new file with mode: 0644]
tools/UnitTest++/Makefile [new file with mode: 0644]
tools/UnitTest++/README [new file with mode: 0644]
tools/UnitTest++/TestUnitTest++.exe [new file with mode: 0644]
tools/UnitTest++/docs/UnitTest++.html [new file with mode: 0644]
tools/UnitTest++/src/AssertException.cpp [new file with mode: 0644]
tools/UnitTest++/src/AssertException.h [new file with mode: 0644]
tools/UnitTest++/src/CheckMacros.h [new file with mode: 0644]
tools/UnitTest++/src/Checks.cpp [new file with mode: 0644]
tools/UnitTest++/src/Checks.h [new file with mode: 0644]
tools/UnitTest++/src/Config.h [new file with mode: 0644]
tools/UnitTest++/src/CurrentTest.cpp [new file with mode: 0644]
tools/UnitTest++/src/CurrentTest.h [new file with mode: 0644]
tools/UnitTest++/src/DeferredTestReporter.cpp [new file with mode: 0644]
tools/UnitTest++/src/DeferredTestReporter.h [new file with mode: 0644]
tools/UnitTest++/src/DeferredTestResult.cpp [new file with mode: 0644]
tools/UnitTest++/src/DeferredTestResult.h [new file with mode: 0644]
tools/UnitTest++/src/ExecuteTest.h [new file with mode: 0644]
tools/UnitTest++/src/MemoryOutStream.cpp [new file with mode: 0644]
tools/UnitTest++/src/MemoryOutStream.h [new file with mode: 0644]
tools/UnitTest++/src/Posix/SignalTranslator.cpp [new file with mode: 0644]
tools/UnitTest++/src/Posix/SignalTranslator.h [new file with mode: 0644]
tools/UnitTest++/src/Posix/TimeHelpers.cpp [new file with mode: 0644]
tools/UnitTest++/src/Posix/TimeHelpers.h [new file with mode: 0644]
tools/UnitTest++/src/ReportAssert.cpp [new file with mode: 0644]
tools/UnitTest++/src/ReportAssert.h [new file with mode: 0644]
tools/UnitTest++/src/Test.cpp [new file with mode: 0644]
tools/UnitTest++/src/Test.h [new file with mode: 0644]
tools/UnitTest++/src/TestDetails.cpp [new file with mode: 0644]
tools/UnitTest++/src/TestDetails.h [new file with mode: 0644]
tools/UnitTest++/src/TestList.cpp [new file with mode: 0644]
tools/UnitTest++/src/TestList.h [new file with mode: 0644]
tools/UnitTest++/src/TestMacros.h [new file with mode: 0644]
tools/UnitTest++/src/TestReporter.cpp [new file with mode: 0644]
tools/UnitTest++/src/TestReporter.h [new file with mode: 0644]
tools/UnitTest++/src/TestReporterStdout.cpp [new file with mode: 0644]
tools/UnitTest++/src/TestReporterStdout.h [new file with mode: 0644]
tools/UnitTest++/src/TestResults.cpp [new file with mode: 0644]
tools/UnitTest++/src/TestResults.h [new file with mode: 0644]
tools/UnitTest++/src/TestRunner.cpp [new file with mode: 0644]
tools/UnitTest++/src/TestRunner.h [new file with mode: 0644]
tools/UnitTest++/src/TestSuite.h [new file with mode: 0644]
tools/UnitTest++/src/TimeConstraint.cpp [new file with mode: 0644]
tools/UnitTest++/src/TimeConstraint.h [new file with mode: 0644]
tools/UnitTest++/src/TimeHelpers.h [new file with mode: 0644]
tools/UnitTest++/src/UnitTest++.h [new file with mode: 0644]
tools/UnitTest++/src/Win32/TimeHelpers.cpp [new file with mode: 0644]
tools/UnitTest++/src/Win32/TimeHelpers.h [new file with mode: 0644]
tools/UnitTest++/src/XmlTestReporter.cpp [new file with mode: 0644]
tools/UnitTest++/src/XmlTestReporter.h [new file with mode: 0644]
tools/UnitTest++/src/tests/Main.cpp [new file with mode: 0644]
tools/UnitTest++/src/tests/RecordingReporter.h [new file with mode: 0644]
tools/UnitTest++/src/tests/ScopedCurrentTest.h [new file with mode: 0644]
tools/UnitTest++/src/tests/TestAssertHandler.cpp [new file with mode: 0644]
tools/UnitTest++/src/tests/TestCheckMacros.cpp [new file with mode: 0644]
tools/UnitTest++/src/tests/TestChecks.cpp [new file with mode: 0644]
tools/UnitTest++/src/tests/TestCurrentTest.cpp [new file with mode: 0644]
tools/UnitTest++/src/tests/TestDeferredTestReporter.cpp [new file with mode: 0644]
tools/UnitTest++/src/tests/TestMemoryOutStream.cpp [new file with mode: 0644]
tools/UnitTest++/src/tests/TestTest.cpp [new file with mode: 0644]
tools/UnitTest++/src/tests/TestTestList.cpp [new file with mode: 0644]
tools/UnitTest++/src/tests/TestTestMacros.cpp [new file with mode: 0644]
tools/UnitTest++/src/tests/TestTestResults.cpp [new file with mode: 0644]
tools/UnitTest++/src/tests/TestTestRunner.cpp [new file with mode: 0644]
tools/UnitTest++/src/tests/TestTestSuite.cpp [new file with mode: 0644]
tools/UnitTest++/src/tests/TestTimeConstraint.cpp [new file with mode: 0644]
tools/UnitTest++/src/tests/TestTimeConstraintMacro.cpp [new file with mode: 0644]
tools/UnitTest++/src/tests/TestUnitTest++.cpp [new file with mode: 0644]
tools/UnitTest++/src/tests/TestXmlTestReporter.cpp [new file with mode: 0644]