diff --git a/tests/Doctrine/Tests/Common/Cli/ConfigurationTest.php b/tests/Doctrine/Tests/Common/Cli/ConfigurationTest.php new file mode 100644 index 000000000..8e55ea5f1 --- /dev/null +++ b/tests/Doctrine/Tests/Common/Cli/ConfigurationTest.php @@ -0,0 +1,23 @@ +setAttribute('name', 'value'); + + $this->assertTrue($config->hasAttribute('name')); + $this->assertEquals('value', $config->hasAttribute('name')); + + $config->setAttribute('name'); + + $this->assertFalse($config->hasAttribute('name')); + } +} \ No newline at end of file