1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
#include <library/cpp/testing/unittest/gtest.h>
#include <library/cpp/testing/unittest/registar.h>
#include <library/cpp/testing/unittest/tests_data.h>
#include <util/generic/set.h>
#include <util/network/sock.h>
#include <util/system/env.h>
#include <util/system/fs.h>
TEST(GTest, Test1) {
UNIT_ASSERT_EQUAL(1, 1);
}
TEST(GTest, Test2) {
UNIT_ASSERT_EQUAL(2, 2);
}
namespace {
struct TFixture : ::testing::Test {
TFixture()
: I(0)
{
}
void SetUp() override {
I = 5;
}
int I;
};
struct TSimpleFixture : public NUnitTest::TBaseFixture {
size_t Value = 24;
};
struct TOtherFixture : public NUnitTest::TBaseFixture {
size_t TheAnswer = 42;
};
struct TSetUpTearDownFixture : public NUnitTest::TBaseFixture {
int Magic = 3;
void SetUp(NUnitTest::TTestContext&) override {
UNIT_ASSERT_VALUES_EQUAL(Magic, 3);
Magic = 17;
}
void TearDown(NUnitTest::TTestContext&) override {
UNIT_ASSERT_VALUES_EQUAL(Magic, 42);
Magic = 100;
}
};
}
TEST_F(TFixture, Test1) {
ASSERT_EQ(I, 5);
}
TEST(ETest, Test1) {
UNIT_CHECK_GENERATED_EXCEPTION(ythrow yexception(), yexception);
UNIT_CHECK_GENERATED_NO_EXCEPTION(true, yexception);
}
Y_UNIT_TEST_SUITE(TestSingleTestFixture)
{
Y_UNIT_TEST_F(Test3, TSimpleFixture) {
UNIT_ASSERT_EQUAL(Value, 24);
}
}
Y_UNIT_TEST_SUITE_F(TestSuiteFixture, TSimpleFixture)
{
Y_UNIT_TEST(Test1) {
UNIT_ASSERT(Value == 24);
Value = 25;
}
Y_UNIT_TEST(Test2) {
UNIT_ASSERT_EQUAL(Value, 24);
}
Y_UNIT_TEST_F(Test3, TOtherFixture) {
UNIT_ASSERT_EQUAL(TheAnswer, 42);
}
}
Y_UNIT_TEST_SUITE(TestSetUpTearDownFixture)
{
Y_UNIT_TEST_F(Test1, TSetUpTearDownFixture) {
UNIT_ASSERT_VALUES_EQUAL(Magic, 17);
Magic = 42;
}
}
|