<?phpnamespaceDoctrine\Tests\DBAL\Platforms;useDoctrine\DBAL\Platforms\SQLAnywhere11Platform;classSQLAnywhere11PlatformTestextendsSQLAnywherePlatformTest{/** * @var \Doctrine\DBAL\Platforms\SQLAnywhere11Platform */protected$_platform;publicfunctioncreatePlatform(){returnnewSQLAnywhere11Platform;}publicfunctiontestDoesNotSupportRegexp(){$this->markTestSkipped('This version of the platform now supports regular expressions.');}publicfunctiontestGeneratesRegularExpressionSQLSnippet(){$this->assertEquals('REGEXP',$this->_platform->getRegexpExpression());}}