mirror of
https://github.com/jbcr/sitemap-plugin.git
synced 2026-04-27 10:36:25 +02:00
22 lines
415 B
PHP
22 lines
415 B
PHP
<?php
|
|
|
|
namespace Tests\SitemapPlugin\Controller;
|
|
|
|
use Lakion\ApiTestCase\ApiTestCase;
|
|
use Lakion\ApiTestCase\XmlApiTestCase;
|
|
|
|
/**
|
|
* Class AbstractTestController
|
|
* @package Tests\SitemapPlugin\Controller
|
|
*/
|
|
abstract class AbstractTestController extends XmlApiTestCase
|
|
{
|
|
/**
|
|
* @before
|
|
*/
|
|
public function setUpClient()
|
|
{
|
|
$this->client = static::createClient(array(), array());
|
|
}
|
|
}
|