tims-todo/tests/system/PHPTest.php

14 lines
158 B
PHP
Executable File

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