assertEquals('error/403', $unauthorizedStrategyOptions->getTemplate()); } public function testSettersAndGetters() { $unauthorizedStrategyOptions = new UnauthorizedStrategyOptions([ 'template' => 'error/unauthorized' ]); $this->assertEquals('error/unauthorized', $unauthorizedStrategyOptions->getTemplate()); } }