| 30 | #include "CppUTest/PlatformSpecificFunctions.h" |
| 31 | |
| 32 | CommandLineArguments::CommandLineArguments(int ac, const char *const *av) : |
| 33 | ac_(ac), av_(av), needHelp_(false), verbose_(false), veryVerbose_(false), color_(false), runTestsAsSeperateProcess_(false), listTestGroupNames_(false), listTestGroupAndCaseNames_(false), runIgnored_(false), reversing_(false), shuffling_(false), shufflingPreSeeded_(false), repeat_(1), shuffleSeed_(0), groupFilters_(NULLPTR), nameFilters_(NULLPTR), outputType_(OUTPUT_ECLIPSE) |
| 34 | { |
| 35 | } |
| 36 | |
| 37 | CommandLineArguments::~CommandLineArguments() |
| 38 | { |
nothing calls this directly
no outgoing calls
no test coverage detected