c-template
|
#include <stdbool.h>
#include <stdlib.h>
#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include <cmocka.h>
#include <assert.h>
#include "command_line.c"
Go to the source code of this file.
Functions | |
void | print_hello_world () |
command_handler * | new_test_command () |
void | test_new_command_object (void **state) |
void | test_load_command (void **state) |
void | test_execute (void **state) |
int | main (void) |
int main | ( | void | ) |
command_handler * new_test_command | ( | ) |
Definition at line 15 of file command_line_test.c.
void print_hello_world | ( | ) |
void test_execute | ( | void ** | state | ) |
Definition at line 65 of file command_line_test.c.
void test_load_command | ( | void ** | state | ) |
Definition at line 46 of file command_line_test.c.
void test_new_command_object | ( | void ** | state | ) |
Definition at line 28 of file command_line_test.c.