summaryrefslogtreecommitdiff
path: root/demos/time-tracker/tests/unit/ProjectTestCase.php
blob: a61c4f77bc1750763cd1be8c7bbd3dfeb805316b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

//import Project class.
Prado::using('Application.APP_CODE.Project');

class ProjectTestCase extends UnitTestCase
{
	function testProjectClassExists()
	{
		$project = new Project();
		$this->pass();
	}
}

?>