Example #1
0
 /** @test */
 public function it_throws_an_exception_when_unknown_method_called()
 {
     $this->setExpectedException(\SleepingOwl\Admin\Exceptions\MethodNotFoundException::class);
     $route = $this->instance->unknownMethod();
     $this->assertEquals('some-route', $route);
 }