| 47 | }; |
| 48 | |
| 49 | TEST(MockSupportTest, setDataForUnsignedIntegerValues) |
| 50 | { |
| 51 | unsigned int expected_data = 7; |
| 52 | mock().setData("data", expected_data); |
| 53 | LONGS_EQUAL(expected_data, mock().getData("data").getUnsignedIntValue()); |
| 54 | } |
| 55 | |
| 56 | TEST(MockSupportTest, setDataForIntegerValues) |
| 57 | { |
nothing calls this directly
no test coverage detected