| 80 | } // namespace |
| 81 | |
| 82 | UNIT_TEST(Reporter_Smoke) |
| 83 | { |
| 84 | { |
| 85 | unique_ptr<platform::Socket> socket; |
| 86 | Reporter reporter(std::move(socket), "localhost", 0, milliseconds(10) /* pushDelay */); |
| 87 | } |
| 88 | { |
| 89 | auto socket = make_unique<TestSocket>(); |
| 90 | Reporter reporter(std::move(socket), "localhost", 0, milliseconds(10) /* pushDelay */); |
| 91 | } |
| 92 | { |
| 93 | auto socket = platform::CreateSocket(); |
| 94 | Reporter reporter(std::move(socket), "localhost", 0, milliseconds(10) /* pushDelay */); |
| 95 | } |
| 96 | } |
| 97 | |
| 98 | UNIT_TEST(Reporter_TransferLocations) |
| 99 | { |
nothing calls this directly
no test coverage detected