initial commit
This commit is contained in:
parent
2ec9609b51
commit
670c97dd16
15 changed files with 2373 additions and 2373 deletions
|
|
@ -1,40 +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"));
|
||||
/*----------------------------------------------------------
|
||||
* 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"));
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue