Пример #1
0
 /**
  * Test set/get height
  */
 public function testSetGetAlign()
 {
     $textBox = new TextBox();
     $expectedAlignment = Jc::START;
     $textBox->setAlignment($expectedAlignment);
     $this->assertEquals($expectedAlignment, $textBox->getAlignment());
 }