コード例 #1
0
ファイル: InputTest.php プロジェクト: winkbrace/winkform
 /**
  * test title attribute
  */
 public function testInputTitle()
 {
     $input = new TextInput('test');
     $this->assertNull($input->renderTitle());
     $input->setTitle('title');
     $this->assertEquals(' title="title"', $input->renderTitle());
 }