Goetas\Twital\Tests\CoreNodesTest::getDataFormTemplates PHP Method

getDataFormTemplates() public method

    public function getDataFormTemplates()
    {
        $all = glob(__DIR__ . "/templates/*.xml");
        $data = array();
        foreach ($all as $file) {
            $source = file_get_contents($file);
            $expected = file_get_contents(substr($file, 0, -4) . ".twig");
            $data[] = array($source, $expected);
        }
        return $data;
    }