. */ use PHPUnit_Framework_TestCase; /** * Test harness for the class JewishDate */ class JewishDateTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests * * @return void */ public function setUp() { } /** * Test that the class exists * * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\JewishDate')); } }