markTestSkipped('Skipped on HHVM. Will be fixed in MAGETWO-45033'); } $this->_typesXsdSchema = __DIR__ . "/_files/types_schema.xsd"; $this->_xsdValidator = new \Magento\Framework\TestFramework\Unit\Utility\XsdValidator(); } /** * @param string $xmlString * @param array $expectedError * @dataProvider schemaCorrectlyIdentifiesInvalidTypesXmlDataProvider */ public function testSchemaCorrectlyIdentifiesInvalidTypesXml($xmlString, $expectedError) { $actualError = $this->_xsdValidator->validate($this->_typesXsdSchema, $xmlString); $this->assertEquals($expectedError, $actualError); } /** * Data provider with invalid type declaration * * @return array */ public function schemaCorrectlyIdentifiesInvalidTypesXmlDataProvider() { return include __DIR__ . '/_files/typesInvalidArray.php'; } public function testSchemaCorrectlyIdentifiesValidXml() { $xmlString = file_get_contents(__DIR__ . '/_files/types_valid.xml'); $actualResult = $this->_xsdValidator->validate($this->_typesXsdSchema, $xmlString); $this->assertEmpty($actualResult, join("\n", $actualResult)); } }