Files
Grav/tests/unit/UtilsTest.php
2016-01-05 11:52:17 +01:00

26 lines
386 B
PHP

<?php
use Grav\Common\Utils;
class UtilsTest extends \Codeception\TestCase\Test
{
/**
* @var \UnitTester
*/
protected $tester;
protected function _before()
{
}
protected function _after()
{
}
// tests
public function testValidation()
{
$this->assertTrue(Utils::startsWith('english', 'en'));
}
}