Example #1
0
 /**
  * @covers XMLConfig::getInt
  * @todo can be use to fetch string (like getString)
  */
 public function testGetInt()
 {
     $configValue = "tablePaging/rowsPerPage";
     $actual = $this->config->getInt($configValue);
     $excepted = 40;
     $this->assertEquals($excepted, $actual);
 }