aboutsummaryrefslogtreecommitdiff
path: root/CST 126/Unit_Tests/Unit_Tests.cpp
blob: 5330e41e57698cde9d284a85ec88c6c5ae02caff (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#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);
		}
	};
}