#include "pch.h" #include "CppUnitTest.h" using namespace Microsoft::VisualStudio::CppUnitTestFramework; namespace unittests { TEST_CLASS(unittests) { public: TEST_METHOD(Addition_Function_Overloads_Correctly) { //Arrange //Act int result = add(15, 15, 15); //Assert Assert::AreEqual(45, result); } }; }