diff --git a/nitro/src/test/Functions/test.cpp b/nitro/src/test/Functions/test.cpp new file mode 100644 index 0000000..b433ea4 --- /dev/null +++ b/nitro/src/test/Functions/test.cpp @@ -0,0 +1,31 @@ +#ifdef TEST + +#include "../Struct/Vector.test.h" +#include "math_ext.test.h" +#include "../Any/AnimatedAny.test.h" +#include "../Any/Reactive.test.h" +#include "../Functions/queue_ext.test.h" +#include "../Reactive/UnaryReactive.test.h" +#include "../Reactive/BinaryReactive.test.h" + +namespace ii887522::nitro +{ + static int main() + { + testVector(); + testMathExt(); + testAnimatedAny(); + testReactive(); + testQueueExt(); + testUnaryReactive(); + testBinaryReactive(); + return 0; + } +} + +int main() +{ + return ii887522::nitro::main(); +} + +#endif diff --git a/nitro/src/test/test.cpp b/nitro/src/test/test.cpp deleted file mode 100644 index 1496e06..0000000 --- a/nitro/src/test/test.cpp +++ /dev/null @@ -1,17 +0,0 @@ -#ifdef TEST - -namespace ii887522::nitro -{ - static int main() - { - - return 0; - } -} - -int main() -{ - return ii887522::nitro::main(); -} - -#endif