aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/testing/unittest/example_ut.cpp
blob: 52790f1fc6d705d6f960de671611c9a8a69ecc9a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#include <library/cpp/testing/unittest/registar.h>
 
/* 
 * just copy-paste it for good start point 
 */ 
 
Y_UNIT_TEST_SUITE(TUnitTest) {
    Y_UNIT_TEST(TestEqual) {
        UNIT_ASSERT_EQUAL(0, 0); 
        UNIT_ASSERT_EQUAL(1, 1); 
    } 
}