Files
bitshift-validate/tests/sanity-check/driver.cxx
T
2026-06-24 14:13:35 +02:00

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);
}