'Test', 'slug' => 'test' ) ); } public function testGenerate() { $icml = new WC_Retailcrm_Icml(); $icml->generate(); $this->assertFileExists(ABSPATH . 'simla.xml'); $xml = simplexml_load_file(ABSPATH . 'simla.xml'); $res = $xml->xpath('/yml_catalog/shop/categories/category[@id]'); $this->assertNotEmpty($res); foreach ($res as $node) { $this->assertEquals('category', $node->getName()); } } }