example_ut.cpp 237 B

123456789101112
  1. #include <library/cpp/testing/unittest/registar.h>
  2. /*
  3. * just copy-paste it for good start point
  4. */
  5. Y_UNIT_TEST_SUITE(TUnitTest) {
  6. Y_UNIT_TEST(TestEqual) {
  7. UNIT_ASSERT_EQUAL(0, 0);
  8. UNIT_ASSERT_EQUAL(1, 1);
  9. }
  10. }