Browse Source

create files for subtraction

master
INNA 11 months ago
parent
commit
913338c599
  1. 1
      src/subtraktion.c
  2. 5
      src/subtraktion.h
  3. 20
      test/test_subtraktion.c

1
src/subtraktion.c

@ -0,0 +1 @@
#include "subtraktion.h"

5
src/subtraktion.h

@ -0,0 +1,5 @@
#ifndef SUBTRAKTION_H
#define SUBTRAKTION_H
#endif // SUBTRAKTION_H

20
test/test_subtraktion.c

@ -0,0 +1,20 @@
#ifdef TEST
#include "unity.h"
#include "subtraktion.h"
void setUp(void)
{
}
void tearDown(void)
{
}
void test_subtraktion_NeedToImplement(void)
{
TEST_IGNORE_MESSAGE("Need to Implement subtraktion");
}
#endif // TEST
Loading…
Cancel
Save