示例#1
0
 /**
  * @covers Applications\Options\ModuleOptions::getAttachmentsMaxSize
  * @covers Applications\Options\ModuleOptions::setAttachmentsMaxSize
  */
 public function testSetGetAttachmentsMaxSize()
 {
     $this->options->setAttachmentsMaxSize(12345);
     $this->assertEquals(12345, $this->options->getAttachmentsMaxSize());
 }