public function test_it_should_be_incompatible()
 {
     $updateFromVersion = '2.0.0';
     $setupContext = new SetupContext('', '', $updateFromVersion);
     $dbalConnectionMock = $this->createMock(Connection::class);
     $snippetManagerMock = $this->createMock(\Shopware_Components_Snippet_Manager::class);
     $updater = new Update03DefaultProfileSupport($setupContext, $dbalConnectionMock, $snippetManagerMock);
     $isCompatible = $updater->isCompatible();
     $this->assertFalse($isCompatible);
 }