コード例 #1
0
ファイル: KeyValueNodeTest.php プロジェクト: sagephp/ini
 public function testSetContentWithComments()
 {
     $obj = new KeyValueNode();
     $obj->setContent('foo=bar; comment');
     $this->assertEquals('bar', $obj->getValue());
     $this->assertEquals('foo', $obj->getKey());
     $this->assertEquals('foo = bar ; comment', (string) $obj);
 }