14 lines
158 B
PHP
Executable File
14 lines
158 B
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* @group System
|
|
*/
|
|
|
|
class PHPTest extends CIUnit_TestCase {
|
|
|
|
public function testPhpVersion()
|
|
{
|
|
$this->assertTrue(phpversion() >= 5.4);
|
|
}
|
|
}
|