Complex toy classes & DataAnalysis initial

This commit is contained in:
IlyaShurupov 2023-10-21 14:33:33 +03:00 committed by Ilya Shurupov
parent e9daedd6ea
commit b4ae5dde77
12 changed files with 376 additions and 169 deletions

View file

@ -1,8 +1,6 @@
#include "MathCommon.hpp"
#include "Testing.hpp"
#include "Utils.hpp"
#include <cstdlib>
static bool init(const tp::ModuleManifest* self) {
tp::gTesting.setRootName(self->getName());
@ -12,8 +10,7 @@ static bool init(const tp::ModuleManifest* self) {
void testMath();
int main() {
tp::ModuleManifest* deps[] = { &tp::gModuleUtils, nullptr };
tp::ModuleManifest* deps[] = {&tp::gModuleMath, &tp::gModuleUtils, nullptr};
tp::ModuleManifest testModule("MathTest", init, nullptr, deps);
if (!testModule.initialize()) {