23 CPPUNIT_ASSERT(6 == CalcObject->
Addition(3,3));
37 CPPUNIT_ASSERT(3 == CalcObject->
Division(9,3));
void setUp(void)
setUp() method that is executed before all the test cases that the test class includes ...
void testSubtraction(void)
float Division(float a, float b)
Calculations (Tested Class)
float Addition(float a, float b)
float Multiplication(float a, float b)
float Subtraction(float a, float b)
void testMultiplication(void)
void tearDown(void)
tearDown() method that is executed after all the test cases that the test class includes ...
File containing the Test Class declaration.