StrTest.php 702 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /*
  3. * This file is part of Psy Shell.
  4. *
  5. * (c) 2012-2018 Justin Hileman
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Psy\Test\Util;
  11. use Psy\Util\Str;
  12. class StrTest extends \PHPUnit\Framework\TestCase
  13. {
  14. /**
  15. * @dataProvider unvisProvider
  16. */
  17. public function testUnvis($input, $expected)
  18. {
  19. $this->assertSame($expected, Str::unvis($input));
  20. }
  21. public function unvisProvider()
  22. {
  23. //return require_once(__DIR__.'/../fixtures/unvis_fixtures.php');
  24. return \json_decode(\file_get_contents(__DIR__ . '/../fixtures/unvis_fixtures.json'));
  25. }
  26. }