| 79 | }; |
| 80 | |
| 81 | TEST_F(ProfileTest, ReadValueInt_Default) |
| 82 | { |
| 83 | int result = 0; |
| 84 | EXPECT_TRUE(m_pProfile->ReadValue(L"Settings", L"SomeIntegerKey", result, 42)); |
| 85 | EXPECT_EQ(result, 42); |
| 86 | } |
| 87 | |
| 88 | TEST_F(ProfileTest, ReadValueInt_Positive) |
| 89 | { |
nothing calls this directly
no test coverage detected