public function testHasDefaultWithNullValue()
 {
     $this->assertFalse($this->resolver->hasDefault('foo'));
     $this->resolver->setDefault('foo', null);
     $this->assertTrue($this->resolver->hasDefault('foo'));
 }