initial commit
This commit is contained in:
parent
2ec9609b51
commit
670c97dd16
15 changed files with 2373 additions and 2373 deletions
|
|
@ -1,27 +1,27 @@
|
|||
/*----------------------------------------------------------
|
||||
* HTBLA-Leonding
|
||||
* ---------------------------------------------------------
|
||||
* Title: Unit Tests for Memory Manager implementation
|
||||
* Author: */<your name>;/*
|
||||
* ----------------------------------------------------------
|
||||
* Description:
|
||||
* Tests functions for memory manager.
|
||||
* ----------------------------------------------------------
|
||||
*/
|
||||
#ifndef ___TEST_MEM_MAN_H
|
||||
#define ___TEST_MEM_MAN_H
|
||||
|
||||
#include "shortcut.h"
|
||||
|
||||
TEST(test_alloc_memory__shall_allocate_memory);
|
||||
TEST(test_alloc_memory__shall_not_allocate_insufficient_memory);
|
||||
TEST(test_free_memory__shall_release_allocate_memory);
|
||||
TEST(test_free_memory__shall_ignore_release_if_allocated_memory_is_not_start);
|
||||
TEST(test_free_memory__shall_ignore_release_for_not_allocated_memory);
|
||||
|
||||
/*
|
||||
Add more unit tests as needed!
|
||||
Don't forget to register additional tests in test_driver.c
|
||||
*/
|
||||
|
||||
#endif
|
||||
/*----------------------------------------------------------
|
||||
* HTBLA-Leonding
|
||||
* ---------------------------------------------------------
|
||||
* Title: Unit Tests for Memory Manager implementation
|
||||
* Author: */<your name>;/*
|
||||
* ----------------------------------------------------------
|
||||
* Description:
|
||||
* Tests functions for memory manager.
|
||||
* ----------------------------------------------------------
|
||||
*/
|
||||
#ifndef ___TEST_MEM_MAN_H
|
||||
#define ___TEST_MEM_MAN_H
|
||||
|
||||
#include "shortcut.h"
|
||||
|
||||
TEST(test_alloc_memory__shall_allocate_memory);
|
||||
TEST(test_alloc_memory__shall_not_allocate_insufficient_memory);
|
||||
TEST(test_free_memory__shall_release_allocate_memory);
|
||||
TEST(test_free_memory__shall_ignore_release_if_allocated_memory_is_not_start);
|
||||
TEST(test_free_memory__shall_ignore_release_for_not_allocated_memory);
|
||||
|
||||
/*
|
||||
Add more unit tests as needed!
|
||||
Don't forget to register additional tests in test_driver.c
|
||||
*/
|
||||
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue