Skip to content

Releases: Nullsson/HyperTest

v1.0.1

25 Nov 15:58
b6133b9

Choose a tag to compare

Version v1.0.1

What's Changed

Full Changelog: v1.0.0...v1.0.1

v1.0.0

04 Jan 10:51
3baaa3c

Choose a tag to compare

Version 1.0.0

Nullsson releases v1.0.0 of HyperTest.

As of this release the tool is in a functioning state running on Windows, Linux and MacOs. It supports the following type of asserts:

UNITTEST_ASSERT(X, Y, Condition)
UNITTEST_ASSERT_TRUE(X)
UNITTEST_ASSERT_FALSE(X)
UNITTEST_ASSERT_EQUAL(X, Y)
UNITTEST_ASSERT_NOTEQUAL(X, Y)
UNITTEST_ASSERT_LESSTHAN(X, Y)
UNITTEST_ASSERT_LESSOREQUAL(X, Y)
UNITTEST_ASSERT_GREATERTHAN(X, Y)
UNITTEST_ASSERT_GREATEROREQUAL(X, Y)

UNITTEST_EXPECT(X, Y, Condition)
UNITTEST_EXPECT_TRUE(X)
UNITTEST_EXPECT_FALSE(X)
UNITTEST_EXPECT_EQUAL(X, Y)
UNITTEST_EXPECT_NOTEQUAL(X, Y)
UNITTEST_EXPECT_LESSTHAN(X, Y)
UNITTEST_EXPECT_LESSOREQUAL(X, Y)
UNITTEST_EXPECT_GREATERTHAN(X, Y)
UNITTEST_EXPECT_GREATEROREQUAL(X, Y)