public function test_it_should_be_incompatible()
 {
     $setupContext = new SetupContext('', '1.9.0', '');
     $dbalConnectionMock = $this->createMock(Connection::class);
     $installer = new DefaultProfileInstaller($setupContext, $dbalConnectionMock);
     $isCompatible = $installer->isCompatible();
     $this->assertFalse($isCompatible);
 }