Example #1
0
 /**
  * Set/get break type
  */
 public function testBreakType()
 {
     // Section Settings
     $oSettings = new Section();
     $this->assertNull($oSettings->getBreakType());
     $oSettings->setBreakType('continuous');
     $this->assertEquals('continuous', $oSettings->getBreakType());
     $oSettings->setBreakType();
     $this->assertNull($oSettings->getBreakType());
 }