You've already forked bitshift-validate
22 lines
355 B
C++
22 lines
355 B
C++
#include <bitshift/validate/validate.hxx>
|
|
|
|
BV_TEST(sanity, "basic sanity check")
|
|
{
|
|
BV_ASSERT_TRUE(true);
|
|
BV_ASSERT_FALSE(false);
|
|
BV_ASSERT_NULLPTR(nullptr);
|
|
BV_ASSERT_EQUAL(1, 1);
|
|
BV_ASSERT_NOT_EQUAL(0, 1);
|
|
}
|
|
|
|
BV_TEST(ignored, "ignored test")
|
|
{
|
|
BV_IGNORE;
|
|
}
|
|
|
|
int
|
|
main(int argc, char* argv[])
|
|
{
|
|
return bitshift::validate::main(argc, argv);
|
|
}
|