17-simple-memory-management/test_mem_man.c
2025-03-08 13:36:49 +01:00

40 lines
No EOL
1.2 KiB
C

/*----------------------------------------------------------
* 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"));
}