allow('some message', 'some_code'); $this->assertTrue($response->allowed()); $this->assertFalse($response->denied()); $this->assertSame('some message', $response->message()); $this->assertSame('some_code', $response->code()); } public function testDenyMethod() { $response = $this->deny('some message', 'some_code'); $this->assertTrue($response->denied()); $this->assertFalse($response->allowed()); $this->assertSame('some message', $response->message()); $this->assertSame('some_code', $response->code()); } }