Browse Source

plain commit test

remotes/origin/Christian
Christian Reum 11 months ago
parent
commit
f5d435d8ae
  1. 9
      test/test_wwm.c

9
test/test_wwm.c

@ -1,15 +1,10 @@
// test_wwm.c // test_wwm.c
#include "unity.h" #include "unity.h"
#include <string.h>
#include "wwm.h" #include "wwm.h"
void setUp(void) {
// set up any initializations if needed
}
void tearDown(void) {
// clean up after the test if needed
}
void test_setGeld_1(void) { void test_setGeld_1(void) {
// Initialize or reset variables if needed // Initialize or reset variables if needed
@ -37,4 +32,4 @@ void test_crandomNumber(void){
int result = crandomNumber(); int result = crandomNumber();
TEST_ASSERT_TRUE(result >= 0 && result <= 9); TEST_ASSERT_TRUE(result >= 0 && result <= 9);
}
}
Loading…
Cancel
Save