From f30003a54ecbcfe7c189306613182a668b354a8f Mon Sep 17 00:00:00 2001 From: cxnnqr Date: Tue, 6 Feb 2024 12:42:08 +0100 Subject: [PATCH] added test for first number negative and second positive --- test/kgV/test_kgV.c | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/test/kgV/test_kgV.c b/test/kgV/test_kgV.c index bc6ec47..05f8b00 100644 --- a/test/kgV/test_kgV.c +++ b/test/kgV/test_kgV.c @@ -69,3 +69,16 @@ void test_kgVOf2And17(){ //assert TEST_ASSERT_EQUAL_INT(expected, result); } + +void test_kgVOfFirstNumberNegative(){ + //arrange + int a = -2; + int b = 17; + int expected = 34; + + //act + int result = kgV(a, b); + + //assert + TEST_ASSERT_EQUAL_INT(expected, result); +}