| 20 | }; |
| 21 | |
| 22 | TEST_F(OptionsTest, IsSet) { |
| 23 | Options options; |
| 24 | |
| 25 | ASSERT_FALSE(options.isSet("int_key")); |
| 26 | |
| 27 | options.set("int_key", 42, "code"); |
| 28 | |
| 29 | ASSERT_TRUE(options.isSet("int_key")); |
| 30 | } |
| 31 | |
| 32 | TEST_F(OptionsTest, IsSetDefault) { |
| 33 | Options options; |
nothing calls this directly
no test coverage detected