Complex toy classes & DataAnalysis initial
This commit is contained in:
parent
e9daedd6ea
commit
b4ae5dde77
12 changed files with 376 additions and 169 deletions
26
DataAnalysis/tests/Tests.cpp
Normal file
26
DataAnalysis/tests/Tests.cpp
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
|
||||
#include "FullyConnectedNN.hpp"
|
||||
#include "Testing.hpp"
|
||||
#include "Utils.hpp"
|
||||
|
||||
static bool init(const tp::ModuleManifest* self) {
|
||||
tp::gTesting.setRootName(self->getName());
|
||||
return true;
|
||||
}
|
||||
|
||||
void test() {}
|
||||
|
||||
int main() {
|
||||
tp::ModuleManifest* deps[] = {&tp::gModuleDataAnalysis, &tp::gModuleUtils, nullptr};
|
||||
tp::ModuleManifest testModule("DataAnalysisTest", init, nullptr, deps);
|
||||
|
||||
if (!testModule.initialize()) {
|
||||
return 1;
|
||||
}
|
||||
|
||||
test();
|
||||
|
||||
testModule.deinitialize();
|
||||
|
||||
return 0;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue