runMonitor() public method

public runMonitor ( )
 /** @test */
 public function it_throws_an_exception_for_nonexistent_url()
 {
     $httpPingMonitor = new HttpPingMonitor([]);
     $this->setExpectedException(InvalidConfiguration::class);
     $httpPingMonitor->runMonitor();
 }