public function test_assertMaximumShopwareVersion_should_return_false_if_same_versions_were_given()
 {
     $currentShopwareVersion = '5.3.0';
     $maxVersion = '5.3.0';
     $setupContext = new SetupContext($currentShopwareVersion, '', '');
     $isCompatible = $setupContext->assertMaximumShopwareVersion($maxVersion);
     $this->assertFalse($isCompatible);
 }
 /**
  * @return boolean
  */
 public function isCompatible()
 {
     return $this->setupContext->assertMaximumShopwareVersion(self::SHOPWARE_MAX_VERSION);
 }