コード例 #1
0
ファイル: ModuleOptionsTest.php プロジェクト: webpants/YAWIK
 /**
  * @covers Auth\Options\ModuleOptions::getRole
  * @covers Auth\Options\ModuleOptions::setRole
  */
 public function testSetGetRole()
 {
     $input = 'user';
     $this->options->setRole($input);
     $this->assertEquals($input, $this->options->getRole());
 }