pickles/tests/classes/SessionTest.php
2014-01-12 22:06:34 -05:00

11 lines
120 B
PHP

<?php
class SessionTest extends PHPUnit_Framework_TestCase
{
public function testIsCLI()
{
new Session();
}
}
?>