From 541eecb8b1513309d92a638886d49c75923f76d8 Mon Sep 17 00:00:00 2001 From: Jason Peters Date: Tue, 30 Jan 2024 09:03:44 +0100 Subject: [PATCH] =?UTF-8?q?Test=20f=C3=BCr=20Willkommensnachricht?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/test/c/Jason/test_ASCII_art.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/test/c/Jason/test_ASCII_art.c b/src/test/c/Jason/test_ASCII_art.c index 07b8516..4b7c273 100644 --- a/src/test/c/Jason/test_ASCII_art.c +++ b/src/test/c/Jason/test_ASCII_art.c @@ -1,7 +1,7 @@ #include "unity.h" #include "ASCII_art.h" -void setup (void){ +void setUp (void){ } @@ -9,3 +9,13 @@ void tearDown(void){ } +void test_doesWelcomeMessageWork(){ + //arrange + int expectedResult = 0; + + //act + int actualResult = printWelcomeMessage(); + //assert + + TEST_ASSERT_EQUAL_INT(expectedResult,actualResult); +} \ No newline at end of file