This repository has been archived by the owner on Nov 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature-ii887522-test' into 'develop'
Update test See merge request ii887522/nitro!21
- Loading branch information
Showing
2 changed files
with
31 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file was deleted.
Oops, something went wrong.