Exemplo n.º 1
0
 public function testGetSetOutputDirWithDefaultValue()
 {
     $config = new ExportSettings();
     $newOutputDir = '/path/to/directory';
     $this->assertNotNull($config->getOutputDir());
     $this->assertNotSame($newOutputDir, $config->getOutputDir());
     $config->setOutputDir($newOutputDir);
     $this->assertSame($newOutputDir, $config->getOutputDir());
 }