diff options
Diffstat (limited to 'tests/application/controllers/SystemControllerTest.php')
-rw-r--r-- | tests/application/controllers/SystemControllerTest.php | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/application/controllers/SystemControllerTest.php b/tests/application/controllers/SystemControllerTest.php new file mode 100644 index 0000000..5d6d243 --- /dev/null +++ b/tests/application/controllers/SystemControllerTest.php @@ -0,0 +1,20 @@ +<?php + +require_once 'PHPUnit/Framework/TestCase.php'; + +class SystemControllerTest extends PHPUnit_Framework_TestCase +{ + + public function setUp() + { + /* Setup Routine */ + } + + public function tearDown() + { + /* Tear Down Routine */ + } + + +} + |