TestTests.c 426 B

12345678910111213141516171819
  1. #include "../Tests.h"
  2. #include "core/Vector.h"
  3. void testTest() {
  4. TEST_BOOL(false, true);
  5. TEST_INT(0, 1);
  6. TEST_I64(0, 1);
  7. TEST_U64(0, 1);
  8. TEST_SIZE(0, 1);
  9. TEST_STRING("a", "b");
  10. TEST_FALSE(true);
  11. TEST_TRUE(false);
  12. TEST_NULL(&(int){0});
  13. TEST_NOT_NULL(nullptr);
  14. TEST_FLOAT(0.0f, 1.0f, 0.1f);
  15. TEST_V2(&V(0, 1), &V(2, 3));
  16. TEST_IV2(&IV(0, 1), &IV(2, 3));
  17. finalizeTests();
  18. }