Пример #1
0
 public function testOffsetUnset()
 {
     $bag = new OptionsBag(['antistatic' => 'polyethylene terephthalate']);
     $this->assertTrue($bag->has('antistatic'));
     $bag->offsetUnset('antistatic');
     $this->assertFalse($bag->has('antistatic'));
 }