@@ -63,7 +63,8 @@ public function testWrite($writer)
6363
6464 /**
6565 * @depends testConstructor
66- * @covers Array_Config_Writer::write Array_Config_Writer::getContent
66+ * @covers Array_Config_Writer::write
67+ * @covers Array_Config_Writer::getContent
6768 *
6869 */
6970 public function testWriteUpdateInt ($ writer )
@@ -85,27 +86,7 @@ public function testWriteUpdateInt($writer)
8586
8687 }
8788
88- /**
89- *
90- */
91- public function testWriteUpdateStringWithSemiColon ($ writer )
92- {
93-
94- $ writer ->write ('age ' , 20 );
95- $ this ->assertContains ("\$config['age'] = 20 " , $ writer ->getContent ());
96- $ this ->assertContains ("\$config['siteName'] = 'Foo' " , $ writer ->getContent (), 'Changes only target ' );
97-
98- $ writer ->save ();
99-
100- $ config = require __DIR__ .'/config.php ' ;
101-
102- $ this ->assertTrue (is_array ($ config ));
103- $ this ->assertEquals (20 , $ config ['age ' ]);
104- $ this ->assertFalse ($ writer ->hasError ());
105-
106- return $ writer ;
107-
108- }
89+
10990 /**
11091 * @depends testWriteUpdateInt
11192 */
@@ -141,7 +122,8 @@ public function testWriteUpdateArray($writer)
141122
142123 /**
143124 * @depends testConstructor
144- * @covers @covers Array_Config_Writer::setAutoSave Array_Config_Writer::getAutoSave
125+ * @covers Array_Config_Writer::setAutoSave
126+ * @covers Array_Config_Writer::getAutoSave
145127 */
146128 public function testSetAutoSave ($ writer )
147129 {
0 commit comments