Esempio n. 1
0
 /**
  * test title attribute
  */
 public function testInputTitle()
 {
     $input = new TextInput('test');
     $this->assertNull($input->renderTitle());
     $input->setTitle('title');
     $this->assertEquals(' title="title"', $input->renderTitle());
 }