Merge branch 'main' of https://git.efi.th-nuernberg.de/gitea/hallerni98888/info2Praktikum-DobleSpiel
This commit is contained in:
commit
8b0fa4601a
2
stack.c
2
stack.c
@ -13,7 +13,7 @@ StackNode *push(StackNode *stack, void *data)
|
||||
StackNode *tempNode, *newNode;
|
||||
|
||||
newNode = malloc(sizeof(StackNode));
|
||||
newNode->value = 3;
|
||||
newNode->value = *(int *)data;
|
||||
newNode->next = NULL;
|
||||
|
||||
if (stack == NULL)
|
||||
|
||||
23
test_stack.c
23
test_stack.c
@ -3,6 +3,28 @@
|
||||
#include "stack.h"
|
||||
#include "unity.h"
|
||||
|
||||
void test_push(void)
|
||||
{
|
||||
StackNode *testNode;
|
||||
int data = 1;
|
||||
|
||||
// Test für leeren Stack
|
||||
testNode = push(NULL, &data);
|
||||
TEST_ASSERT_NOT_NULL(&testNode);
|
||||
TEST_ASSERT_NULL(testNode->next);
|
||||
TEST_ASSERT_EQUAL_INT(1, testNode->value);
|
||||
|
||||
data = 2;
|
||||
|
||||
// Test für nicht leeren Stack
|
||||
testNode = push(testNode, &data);
|
||||
TEST_ASSERT_NOT_NULL(&testNode);
|
||||
TEST_ASSERT_NOT_NULL(testNode->next);
|
||||
TEST_ASSERT_NULL(testNode->next->next);
|
||||
TEST_ASSERT_EQUAL_INT(1, testNode->value);
|
||||
TEST_ASSERT_EQUAL_INT(2, testNode->next->value);
|
||||
}
|
||||
|
||||
StackNode* setup(int value, StackNode* next) {
|
||||
StackNode* node = malloc(sizeof(StackNode)); // allocate memory on heap
|
||||
if (node == NULL) {
|
||||
@ -81,6 +103,7 @@ int main()
|
||||
|
||||
printf("============================\nStack tests\n============================\n");
|
||||
|
||||
RUN_TEST(test_push);
|
||||
RUN_TEST(test_pop);
|
||||
RUN_TEST(test_top);
|
||||
RUN_TEST(test_clear);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user