#include "pch.h" #include "CppUnitTest.h" #include "helpers.hpp" using namespace Microsoft::VisualStudio::CppUnitTestFramework; namespace UnitTests { TEST_CLASS(UnitTests) { public: TEST_METHOD(Add_Overload_Returns_Correct_Value) { int result = add(15, 32, 15, 10); Assert::AreEqual(72, result); } }; }