-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstorageTest.cpp
60 lines (49 loc) · 1.29 KB
/
storageTest.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
#include <gtest/gtest.h>
#include <gmock/gmock.h>
#include <deferred.h>
template <typename T>
struct MockStorage : storage_base<MockStorage<T>> {
MOCK_METHOD(void, setImpl, (T), ());
MOCK_METHOD(T&, getImpl, (), ());
MOCK_METHOD(const T&, getImpl, (), (const));
static bool destructCalled;
static void destructImpl(MockStorage* self) noexcept
{
destructCalled = true;
}
};
template <typename T>
bool MockStorage<T>::destructCalled;
TEST(StorageBaseTest, set_CallsImpl)
{
MockStorage<int> mock;
EXPECT_CALL(mock, setImpl(42));
mock.set(42);
}
TEST(StorageBaseTest, get_CallsImpl)
{
MockStorage<int> mock;
int value = 10;
EXPECT_CALL(mock, getImpl())
.WillOnce(::testing::ReturnRef(value));
int& ref = mock.get();
EXPECT_EQ(ref, 10);
}
TEST(StorageBaseTest, get_const_CallsImpl)
{
const MockStorage<int> mock;
int value = 20;
EXPECT_CALL(mock, getImpl())
.WillOnce(::testing::ReturnRef(value));
const int& ref = mock.get();
EXPECT_EQ(ref, 20);
}
TEST(StorageBaseTest, DestructorCalls_destructImpl)
{
MockStorage<int>::destructCalled = false;
{
MockStorage<int> mock;
EXPECT_FALSE(MockStorage<int>::destructCalled);
}
EXPECT_TRUE(MockStorage<int>::destructCalled);
}