Exemplo n.º 1
0
 public function testHas()
 {
     $instance = new Collection(['one' => null, 'two' => 2]);
     $this->assertTrue($instance->has('one'));
     $this->assertTrue($instance->has('two'));
     $this->assertFalse($instance->has('three'));
 }