/**
  * @covers ::__construct
  * @covers ::isSatisfiedBy
  */
 public function testIfSpecificationIsNotSatisfied()
 {
     $this->hasExtension->shouldReceive('isSatisfiedBy')->once()->andReturn(false);
     $this->isHidden->shouldReceive('isSatisfiedBy')->once()->andReturn(false);
     $this->assertFalse($this->fixture->isSatisfiedBy(['test']));
 }
 /**
  * @covers ::__construct
  * @covers ::isSatisfiedBy
  */
 public function testIfSpecificationIsNotSatisfied()
 {
     $this->assertFalse($this->fixture->isSatisfiedBy(['extension' => 'php']));
 }