Initial commit

This commit is contained in:
github-classroom[bot] 2025-03-05 22:19:03 +00:00 committed by GitHub
commit 177826b1a0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
15 changed files with 2377 additions and 0 deletions

40
test_mem_man.c Normal file
View file

@ -0,0 +1,40 @@
/*----------------------------------------------------------
* HTBLA-Leonding
* ---------------------------------------------------------
* Title: Unit Tests for Memory Manager implementation
* Author: */<your name>;/*
* ----------------------------------------------------------
* Description:
* Tests functions for memory manager.
* ----------------------------------------------------------
*/
#include "test_mem_man.h"
#include <stdio.h>
#include <string.h>
TEST(test_alloc_memory__shall_allocate_memory) {
/** unit test code here */
ASSERT_TRUE(false, MSG("Not implemented"));
}
TEST(test_alloc_memory__shall_not_allocate_insufficient_memory) {
/** unit test code here */
ASSERT_TRUE(false, MSG("Not implemented"));
}
TEST(test_free_memory__shall_release_allocate_memory) {
/** unit test code here */
ASSERT_TRUE(false, MSG("Not implemented"));
}
TEST(test_free_memory__shall_ignore_release_if_allocated_memory_is_not_start) {
/** unit test code here */
ASSERT_TRUE(false, MSG("Not implemented"));
}
TEST(test_free_memory__shall_ignore_release_for_not_allocated_memory) {
/** unit test code here */
ASSERT_TRUE(false, MSG("Not implemented"));
}