Browse Source

refactoring: Variablenname Änderung

remotes/origin/wortspieldev
Lennart Goetze 11 months ago
parent
commit
a59ad88d6c
  1. 18
      build/test/cache/test_WortSpiel.c
  2. BIN
      build/test/out/c/WortSpiel.o
  3. BIN
      build/test/out/c/test_WortSpiel.o
  4. BIN
      build/test/out/c/test_WortSpiel_runner.o
  5. BIN
      build/test/out/test_WortSpiel.out
  6. 18
      build/test/preprocess/files/test_WortSpiel.c
  7. 2
      build/test/results/test_SchereSteinPapier.pass
  8. 10
      build/test/results/test_WortSpiel.pass
  9. 2
      build/test/results/test_ageinseconds.pass
  10. 2
      build/test/results/test_minirechner.pass
  11. 2
      build/test/results/test_zahlenraten.pass
  12. 2
      build/test/runners/test_WortSpiel_runner.c
  13. 4
      test/test_WortSpiel.c

18
build/test/cache/test_WortSpiel.c

@ -171,3 +171,21 @@ void testUmdrehenWort_einBuchstabe(void) {
), (UNITY_UINT)(69));
}
void testSucheBuchstabe_existiert(void) {
char wort1[] = "Programming";
int index1 = sucheBuchstabe(wort1, 'g');
UnityAssertEqualNumber((UNITY_INT)((3)), (UNITY_INT)((index1)), (
((void *)0)
), (UNITY_UINT)(75), UNITY_DISPLAY_STYLE_INT);
}

BIN
build/test/out/c/WortSpiel.o

BIN
build/test/out/c/test_WortSpiel.o

BIN
build/test/out/c/test_WortSpiel_runner.o

BIN
build/test/out/test_WortSpiel.out

18
build/test/preprocess/files/test_WortSpiel.c

@ -171,3 +171,21 @@ void testUmdrehenWort_einBuchstabe(void) {
), (UNITY_UINT)(69));
}
void testSucheBuchstabe_existiert(void) {
char wort1[] = "Programming";
int index1 = sucheBuchstabe(wort1, 'g');
UnityAssertEqualNumber((UNITY_INT)((3)), (UNITY_INT)((index1)), (
((void *)0)
), (UNITY_UINT)(75), UNITY_DISPLAY_STYLE_INT);
}

2
build/test/results/test_SchereSteinPapier.pass

@ -19,4 +19,4 @@
:failed: 0
:ignored: 0
:stdout: []
:time: 0.044693699999697856
:time: 0.04560680000031425

10
build/test/results/test_WortSpiel.pass

@ -39,12 +39,16 @@
:line: 66
:message: ''
:unity_test_time: 0
- :test: testSucheBuchstabe_existiert
:line: 72
:message: ''
:unity_test_time: 0
:failures: []
:ignores: []
:counts:
:total: 9
:passed: 9
:total: 10
:passed: 10
:failed: 0
:ignored: 0
:stdout: []
:time: 0.6905482999991364
:time: 0.856331400000272

2
build/test/results/test_ageinseconds.pass

@ -23,4 +23,4 @@
:failed: 0
:ignored: 0
:stdout: []
:time: 0.04080749999957334
:time: 0.04383059999963734

2
build/test/results/test_minirechner.pass

@ -83,4 +83,4 @@
:failed: 0
:ignored: 0
:stdout: []
:time: 0.040822400000251946
:time: 0.04288310000083584

2
build/test/results/test_zahlenraten.pass

@ -15,4 +15,4 @@
:failed: 0
:ignored: 0
:stdout: []
:time: 0.040525299998989794
:time: 0.042165499999100575

2
build/test/runners/test_WortSpiel_runner.c

@ -19,6 +19,7 @@ extern void testZaehleBuchstaben_Leereswort(void);
extern void testUmdrehenWort_normalesWort(void);
extern void testUmdrehenWort_leeresWort(void);
extern void testUmdrehenWort_einBuchstabe(void);
extern void testSucheBuchstabe_existiert(void);
/*=======Mock Management=====*/
@ -92,6 +93,7 @@ int main(void)
run_test(testUmdrehenWort_normalesWort, "testUmdrehenWort_normalesWort", 53);
run_test(testUmdrehenWort_leeresWort, "testUmdrehenWort_leeresWort", 60);
run_test(testUmdrehenWort_einBuchstabe, "testUmdrehenWort_einBuchstabe", 66);
run_test(testSucheBuchstabe_existiert, "testSucheBuchstabe_existiert", 72);
return UnityEnd();
}

4
test/test_WortSpiel.c

@ -71,8 +71,8 @@ void testUmdrehenWort_einBuchstabe(void) {
void testSucheBuchstabe_existiert(void) {
char wort1[] = "Programming";
int index1 = sucheBuchstabe(wort1, 'g');
TEST_ASSERT_EQUAL_INT(3, index1);
int position = sucheBuchstabe(wort1, 'g');
TEST_ASSERT_EQUAL_INT(3, position);
}

Loading…
Cancel
Save