/*---------------------------------------------------------- * HTBLA-Leonding * --------------------------------------------------------- * Title: Unit Tests for Memory Manager implementation * Author: */;/* * ---------------------------------------------------------- * Description: * Tests functions for memory manager. * ---------------------------------------------------------- */ #include "test_mem_man.h" #include #include 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")); }