21 lines
484 B
PHP
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'],
|
|
];
|
|
}
|
|
}
|