eZ\Publish\Core\FieldType\Tests\RichText\Normalizer\DocumentTypeDefinitionTest::providerForTestRefuse PHP Method

providerForTestRefuse() public method

    public function providerForTestRefuse()
    {
        return array(array('section', 'http://ez.no/namespaces/ezpublish5/xhtml5/edit', __DIR__ . '/_fixtures/pound.dtd', '`eZ` flavored **markdown**'), array('section', 'http://ez.no/namespaces/ezpublish5/xhtml5/edit', __DIR__ . '/_fixtures/pound.dtd', '<?xml version="1.0" encoding="UTF-8"?>this is not exactly well formed...'), array('section', 'http://ez.no/namespaces/ezpublish5/xhtml5/edit', __DIR__ . '/_fixtures/pound.dtd', '<?xml version="1.0" encoding="UTF-8"?>
<truck xmlns="http://example.com/something">
  <helicopter>Something something tra la la</helicopter>
</truck>'), array('section', 'http://ez.no/namespaces/ezpublish5/xhtml5/edit', __DIR__ . '/_fixtures/pound.dtd', '<?xml version="1.0" encoding="UTF-8"?>
<section xmlns="http://docbook.org/ns/docbook"
         xmlns:xlink="http://www.w3.org/1999/xlink"
         xmlns:ezxhtml="http://ez.no/xmlns/ezpublish/docbook/xhtml"
         xmlns:ezcustom="http://ez.no/xmlns/ezpublish/docbook/custom"
         version="5.0-variant ezpublish-1.0">
  <para ezxhtml:class="paraClass">This is a paragraph.</para>
</section>'), array('section', 'http://ez.no/namespaces/ezpublish5/xhtml5/edit', __DIR__ . '/_fixtures/pound.dtd', '<?xml version="1.0" encoding="UTF-8"?>
<section xmlns:xhtml="http://ez.no/namespaces/ezpublish3/xhtml/"
         xmlns:image="http://ez.no/namespaces/ezpublish3/image/"
         xmlns:custom="http://ez.no/namespaces/ezpublish3/custom/">
  <section>
    <header>This is a heading.</header>
  </section>
</section>
'));
    }