IniWriterTest: make recently added tests more expressive

refs #11743
This commit is contained in:
Alexander A. Klimov 2016-10-17 13:51:58 +02:00
parent 58b2e6c00f
commit 99866bfdbe
1 changed files with 9 additions and 9 deletions

View File

@ -409,9 +409,9 @@ EOD;
$config->setSection('garbage', $section); $config->setSection('garbage', $section);
$iniWriter = new IniWriter($config, '/dev/null'); $iniWriter = new IniWriter($config, '/dev/null');
$this->assertEquals( $this->assertNotContains(
0, 'foobar',
preg_match('/foobar/', $iniWriter->render()), $iniWriter->render(),
'IniWriter persists section keys with null values' 'IniWriter persists section keys with null values'
); );
} }
@ -424,9 +424,9 @@ EOD;
$config->setSection('garbage', $section); $config->setSection('garbage', $section);
$iniWriter = new IniWriter($config, '/dev/null'); $iniWriter = new IniWriter($config, '/dev/null');
$this->assertEquals( $this->assertContains(
1, 'foobar',
preg_match('/foobar/', $iniWriter->render()), $iniWriter->render(),
'IniWriter doesn\'t persist section keys with empty values' 'IniWriter doesn\'t persist section keys with empty values'
); );
} }
@ -441,9 +441,9 @@ EOD;
$section = $config->getSection('garbage'); $section = $config->getSection('garbage');
$section->foobar = null; $section->foobar = null;
$iniWriter = new IniWriter($config, $filename); $iniWriter = new IniWriter($config, $filename);
$this->assertEquals( $this->assertNotContains(
0, 'foobar',
preg_match('/foobar/', $iniWriter->render()), $iniWriter->render(),
'IniWriter doesn\'t remove section keys with null values' 'IniWriter doesn\'t remove section keys with null values'
); );