summaryrefslogtreecommitdiff
path: root/demos/time-tracker/tests/unit/ProjectTestCase.php
diff options
context:
space:
mode:
Diffstat (limited to 'demos/time-tracker/tests/unit/ProjectTestCase.php')
-rw-r--r--demos/time-tracker/tests/unit/ProjectTestCase.php15
1 files changed, 15 insertions, 0 deletions
diff --git a/demos/time-tracker/tests/unit/ProjectTestCase.php b/demos/time-tracker/tests/unit/ProjectTestCase.php
new file mode 100644
index 00000000..a61c4f77
--- /dev/null
+++ b/demos/time-tracker/tests/unit/ProjectTestCase.php
@@ -0,0 +1,15 @@
+<?php
+
+//import Project class.
+Prado::using('Application.APP_CODE.Project');
+
+class ProjectTestCase extends UnitTestCase
+{
+ function testProjectClassExists()
+ {
+ $project = new Project();
+ $this->pass();
+ }
+}
+
+?> \ No newline at end of file