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

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

require_once(dirname(__FILE__).'/BaseTestCase.php');

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

?>