示例#1
0
 public function testClear()
 {
     $container = new \Pure\Container(array('something' => 'somebody'));
     $container->clear();
     $this->assertFalse($container->has('something'));
 }