You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
260 B
17 lines
260 B
#include "unity.h"
|
|
#include "kgV.h"
|
|
|
|
void setUp(void){}
|
|
void tearDown(void){}
|
|
|
|
void test_kgV8And6(void) {
|
|
//arrange
|
|
int a = 8;
|
|
int b = 6;
|
|
int expected = 24;
|
|
|
|
//act
|
|
int result = kgV(a, b);
|
|
|
|
TEST_ASSERT_EQUAL_INT(expected, result);
|
|
}
|