aboutsummaryrefslogtreecommitdiff
path: root/CST 126/UnitTest2/UnitTest2.cpp
diff options
context:
space:
mode:
authorArthur Spears <[email protected]>2024-04-17 19:27:26 -0700
committerArthur Spears <[email protected]>2024-04-17 19:27:26 -0700
commit7986ee1b60dcd6bf645dfb84272b887faa0aafb8 (patch)
treeb015260b6804acb0966c9ceb393d0fa9edd5938b /CST 126/UnitTest2/UnitTest2.cpp
parentAdded Unit Tests Project (diff)
downloadhomework-1-arthurtspears-7986ee1b60dcd6bf645dfb84272b887faa0aafb8.tar.xz
homework-1-arthurtspears-7986ee1b60dcd6bf645dfb84272b887faa0aafb8.zip
Added second unit tests project as example.
Diffstat (limited to 'CST 126/UnitTest2/UnitTest2.cpp')
-rw-r--r--CST 126/UnitTest2/UnitTest2.cpp35
1 files changed, 35 insertions, 0 deletions
diff --git a/CST 126/UnitTest2/UnitTest2.cpp b/CST 126/UnitTest2/UnitTest2.cpp
new file mode 100644
index 0000000..825629a
--- /dev/null
+++ b/CST 126/UnitTest2/UnitTest2.cpp
@@ -0,0 +1,35 @@
+#include "pch.h"
+#include "CppUnitTest.h"
+
+#include "helpers.hpp"
+
+using namespace Microsoft::VisualStudio::CppUnitTestFramework;
+
+namespace UnitTest2
+{
+ TEST_CLASS(Add_Function_Overloads)
+ {
+ public:
+
+ TEST_METHOD(Addition_Function_Overload00_Correctly)
+ {
+ //Arrange
+
+ //Act
+ int result = add(15, 15, 15);
+
+ //Assert
+ Assert::AreEqual(45, result);
+ }
+ TEST_METHOD(Addition_Function_Overload01_Correctly)
+ {
+ //Arrange
+
+ //Act
+ int result = add(15, 15, 15, 15);
+
+ //Assert
+ Assert::AreEqual(60, result);
+ }
+ };
+}