diff options
Diffstat (limited to 'CST 126/UnitTest1/UnitTest1.cpp')
| -rw-r--r-- | CST 126/UnitTest1/UnitTest1.cpp | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/CST 126/UnitTest1/UnitTest1.cpp b/CST 126/UnitTest1/UnitTest1.cpp new file mode 100644 index 0000000..9ee1ea5 --- /dev/null +++ b/CST 126/UnitTest1/UnitTest1.cpp @@ -0,0 +1,19 @@ +#include "pch.h" +#include "CppUnitTest.h" + +#include "TempLogHelper.hpp" + +using namespace Microsoft::VisualStudio::CppUnitTestFramework; + +namespace UnitTest1 +{ + TEST_CLASS(UnitTest1) + { + public: + + TEST_METHOD(testmethods) + { + + } + }; +} |