tims-todo/tests/system/PHPTest.php

14 lines
157 B
PHP
Executable File

<?php
/**
* @group System
*/
class PHPTest extends CIUnit_TestCase {
public function testPhpVersion()
{
$this->assertTrue(phpversion() > 5.4);
}
}