Files
Twig/extra/string-extra/tests/IntegrationTest.php
T
Fabien Potencier 00e0b53100 Add missing docs
2019-10-17 08:49:30 +02:00

31 lines
565 B
PHP

<?php
/*
* This file is part of Twig.
*
* (c) Fabien Potencier
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Twig\Extra\String\Tests;
use Twig\Extra\String\StringExtension;
use Twig\Test\IntegrationTestCase;
class IntegrationTest extends IntegrationTestCase
{
public function getExtensions()
{
return [
new StringExtension(),
];
}
public function getFixturesDir()
{
return __DIR__.'/Fixtures/';
}
}