You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
429 B
21 lines
429 B
<?php
|
|
|
|
namespace Rinsvent\DTO2Data\Tests\Converter;
|
|
|
|
use Rinsvent\Transformer\Transformer;
|
|
|
|
class FillTest extends \Codeception\Test\Unit
|
|
{
|
|
/**
|
|
* @var \UnitTester
|
|
*/
|
|
protected $tester;
|
|
|
|
// tests
|
|
public function testSuccessFillRequestData()
|
|
{
|
|
$t = new Transformer();
|
|
$actual = $t->transform(' asdas ', new Transformer\Trim());
|
|
$this->assertEquals('asdas', $actual);
|
|
}
|
|
}
|
|
|