Files
kupshop/bundles/KupShop/FeedsBundle/Tests/FeedSetsTest.php
2025-08-02 16:30:27 +02:00

21 lines
484 B
PHP

<?php
namespace KupShop\FeedsBundle\Tests;
class FeedSetsTest extends FeedsTest
{
public function getDataSet()
{
return $this->getJsonDataSetFromFile(__DIR__.'/feedSets_dataSet.json');
}
public function data_testFeeds()
{
// (int) ID, (string) type, (string) test xml file name, (bool) setTimestamp
// ID and type must match dataSet.json
return [
[13, 'configurable', 'configurable_feedSets.xml'],
];
}
}