CommandLine parser initial
This commit is contained in:
parent
6bca7431b7
commit
90998e2279
11 changed files with 592 additions and 22 deletions
18
CommandLine/tests/Tests.cpp
Normal file
18
CommandLine/tests/Tests.cpp
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
|
||||
#include "Tests.hpp"
|
||||
#include "Testing.hpp"
|
||||
|
||||
|
||||
int main() {
|
||||
|
||||
tp::ModuleManifest* deps[] = { &tp::gModuleUtils, &tp::gModuleTokenizer, nullptr };
|
||||
tp::ModuleManifest testModule("CommandLineTest", nullptr, nullptr, deps);
|
||||
|
||||
if (!testModule.initialize()) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
testCommandLine();
|
||||
|
||||
testModule.deinitialize();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue