/**
  * @covers \BjyAuthorize\View\UnauthorizedStrategy::setTemplate
  * @covers \BjyAuthorize\View\UnauthorizedStrategy::getTemplate
  */
 public function testGetSetTemplate()
 {
     $this->assertSame('template/name', $this->strategy->getTemplate());
     $this->strategy->setTemplate('other/template');
     $this->assertSame('other/template', $this->strategy->getTemplate());
 }