| 48 | namespace webdriver { |
| 49 | |
| 50 | Server::Server(const int port) { |
| 51 | this->Initialize(port, "", "", "", ""); |
| 52 | } |
| 53 | |
| 54 | Server::Server(const int port, const std::string& host) { |
| 55 | this->Initialize(port, host, "", "", ""); |
nothing calls this directly
no test coverage detected