Example #1
0
 public function test_hasField_withNotPresentField_returnsFalse()
 {
     $contents = ['k1' => 'V1', 'k2' => 'V2', 'k3' => 'V3'];
     $section = new \Retrinko\Ini\IniSection('test');
     $section->setContents($contents);
     $this->assertFalse($section->hasItem('k0'));
 }