summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorSimon2011-03-06 18:42:08 +0100
committerSimon2011-03-06 18:42:08 +0100
commit36165ba32a0e45c3c51e84ad4d94f41c861fa804 (patch)
tree9e1618925cc36de28d32b3a6206d62ae33ab0c7b /tests
parentMerge branch 'master' of openslx.org:lsfks/master-teamprojekt/pbs2 (diff)
downloadpbs2-36165ba32a0e45c3c51e84ad4d94f41c861fa804.tar.gz
pbs2-36165ba32a0e45c3c51e84ad4d94f41c861fa804.tar.xz
pbs2-36165ba32a0e45c3c51e84ad4d94f41c861fa804.zip
Client und Pool-Controller hinzugefügt && addclientAction hinzugefügt
Diffstat (limited to 'tests')
-rw-r--r--tests/application/controllers/ClientControllerTest.php20
-rw-r--r--tests/application/controllers/PoolControllerTest.php20
2 files changed, 40 insertions, 0 deletions
diff --git a/tests/application/controllers/ClientControllerTest.php b/tests/application/controllers/ClientControllerTest.php
new file mode 100644
index 0000000..921b2fd
--- /dev/null
+++ b/tests/application/controllers/ClientControllerTest.php
@@ -0,0 +1,20 @@
+<?php
+
+require_once 'PHPUnit/Framework/TestCase.php';
+
+class ClientControllerTest extends PHPUnit_Framework_TestCase
+{
+
+ public function setUp()
+ {
+ /* Setup Routine */
+ }
+
+ public function tearDown()
+ {
+ /* Tear Down Routine */
+ }
+
+
+}
+
diff --git a/tests/application/controllers/PoolControllerTest.php b/tests/application/controllers/PoolControllerTest.php
new file mode 100644
index 0000000..cf16d54
--- /dev/null
+++ b/tests/application/controllers/PoolControllerTest.php
@@ -0,0 +1,20 @@
+<?php
+
+require_once 'PHPUnit/Framework/TestCase.php';
+
+class PoolControllerTest extends PHPUnit_Framework_TestCase
+{
+
+ public function setUp()
+ {
+ /* Setup Routine */
+ }
+
+ public function tearDown()
+ {
+ /* Tear Down Routine */
+ }
+
+
+}
+