| 116 | |
| 117 | |
| 118 | TEST_F(DNSSettingsManager_SingleSetup, BackendInfo) |
| 119 | { |
| 120 | // Sanity checks |
| 121 | std::string expect = std::string("TestBackend: DNS configuration tester"); |
| 122 | std::string be = test_backend->GetBackendInfo(); |
| 123 | ASSERT_EQ(be, expect); |
| 124 | |
| 125 | std::string mgr(dnsmgr->GetBackendInfo()); |
| 126 | ASSERT_STREQ(mgr.c_str(), be.c_str()); |
| 127 | } |
| 128 | |
| 129 | |
| 130 | TEST_F(DNSSettingsManager_SingleSetup, SingleServerDomain) |
nothing calls this directly
no test coverage detected