File tree Expand file tree Collapse file tree 2 files changed +21
-4
lines changed Expand file tree Collapse file tree 2 files changed +21
-4
lines changed Original file line number Diff line number Diff line change 31
31
/* ******************************************************************\
32
32
Function: c_test_case_generatort::c_test_case_generatort
33
33
Inputs:
34
- options - Command line options passed to the interpreter
35
- symbol_table - The symbol table for the GOTO program
36
- goto_functions - The GOTO program
37
- tests - The tests (e.g. traces) to create
34
+ _message_handler - The message handler to report any messages with
35
+ options - Command line options passed to the interpreter
36
+ symbol_table - The symbol table for the GOTO program
37
+ goto_functions - The GOTO program
38
+ tests - The tests (e.g. traces) to create
39
+ test_index - The index of the test (used to name the tests)
40
+ using_test_main - Should the test use a specially named main method
41
+ for its entry point
38
42
Purpose: To generate all the tests described in this generator.
39
43
\*******************************************************************/
40
44
c_test_case_generatort::c_test_case_generatort (
Original file line number Diff line number Diff line change 14
14
#include < algorithm>
15
15
#include < util/config.h>
16
16
17
+ /* ******************************************************************\
18
+ Function: c_unity_test_case_generatort::c_unity_test_case_generatort
19
+ Inputs:
20
+ _message_handler - The message handler to report any messages with
21
+ options - Command line options passed on to the interpreter
22
+ symbol_table - The symbol table of the program
23
+ goto_functions - The goto functions of the program
24
+ test - The details of the test run we are trying to generate
25
+ test_index - The index of the test (used to name the tests)
26
+ using_test_main - Should the test use a specially named main method
27
+ for its entry point
28
+ Purpose: Generate test code in the Unity framework style.
29
+ \*******************************************************************/
17
30
c_unity_test_case_generatort::c_unity_test_case_generatort (
18
31
message_handlert &_message_handler,
19
32
const optionst &options,
You can’t perform that action at this time.
0 commit comments