Adding Simple Objest test. Fixes some bugs
This commit is contained in:
parent
64e1f78739
commit
2c8e1470d1
10 changed files with 74 additions and 15 deletions
|
|
@ -4,6 +4,22 @@
|
|||
|
||||
#include "primitives/primitives.h"
|
||||
|
||||
using namespace tp;
|
||||
using namespace obj;
|
||||
|
||||
|
||||
void testCore();
|
||||
|
||||
int main() {
|
||||
|
||||
tp::ModuleManifest* deps[] = { &gModuleObjects, nullptr };
|
||||
tp::ModuleManifest module("ObjectsTests", nullptr, nullptr, deps);
|
||||
|
||||
if (module.initialize()) {
|
||||
|
||||
testCore();
|
||||
|
||||
module.deinitialize();
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue