diff options
author | bd54 | 2010-08-30 11:49:18 +0200 |
---|---|---|
committer | bd54 | 2010-08-30 11:49:18 +0200 |
commit | 100572c23d79d2648ef4ac0560007866e5625c65 (patch) | |
tree | 8178c7dac9d7294c1d9f148d6aa10a41d9052c48 /tests | |
parent | minor bugfix (diff) | |
download | pbs-master.tar.gz pbs-master.tar.xz pbs-master.zip |
Diffstat (limited to 'tests')
-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 */ + } + + +} + |