-
Notifications
You must be signed in to change notification settings - Fork 123
/
test_project1.cpp
62 lines (49 loc) · 1.55 KB
/
test_project1.cpp
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
#include <iostream>
#include "gtest/gtest.h"
#include "project1.h"
// IndependentMethod is a test case - here, we have 2 tests for this 1 test case
TEST(IndependentMethod, ResetsToZero) {
int i = 3;
independentMethod(i);
EXPECT_EQ(0, i);
i = 12;
independentMethod(i);
EXPECT_EQ(0,i);
}
TEST(IndependentMethod, ResetsToZero2) {
int i = 0;
independentMethod(i);
EXPECT_EQ(0, i);
}
// The fixture for testing class Project1. From google test primer.
class Project1Test : public ::testing::Test {
protected:
// You can remove any or all of the following functions if its body
// is empty.
Project1Test() {
// You can do set-up work for each test here.
}
virtual ~Project1Test() {
// You can do clean-up work that doesn't throw exceptions here.
}
// If the constructor and destructor are not enough for setting up
// and cleaning up each test, you can define the following methods:
virtual void SetUp() {
// Code here will be called immediately after the constructor (right
// before each test).
}
virtual void TearDown() {
// Code here will be called immediately after each test (right
// before the destructor).
}
// Objects declared here can be used by all tests in the test case for Project1.
Project1 p;
};
// Test case must be called the class above
// Also note: use TEST_F instead of TEST to access the test fixture (from google test primer)
TEST_F(Project1Test, MethodBarDoesAbc) {
int i = 0;
p.foo(i); // we have access to p, declared in the fixture
EXPECT_EQ(1, i);
}
// } // namespace - could surround Project1Test in a namespace