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