summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/application/bootstrap.php0
-rw-r--r--tests/application/controllers/BootmediaControllerTest.php20
-rw-r--r--tests/application/controllers/SystemControllerTest.php20
-rw-r--r--tests/application/controllers/UserControllerTest.php20
-rw-r--r--tests/library/bootstrap.php0
-rw-r--r--tests/phpunit.xml0
6 files changed, 60 insertions, 0 deletions
diff --git a/tests/application/bootstrap.php b/tests/application/bootstrap.php
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/tests/application/bootstrap.php
diff --git a/tests/application/controllers/BootmediaControllerTest.php b/tests/application/controllers/BootmediaControllerTest.php
new file mode 100644
index 0000000..81424b2
--- /dev/null
+++ b/tests/application/controllers/BootmediaControllerTest.php
@@ -0,0 +1,20 @@
+<?php
+
+require_once 'PHPUnit/Framework/TestCase.php';
+
+class BootmediaControllerTest extends PHPUnit_Framework_TestCase
+{
+
+ public function setUp()
+ {
+ /* Setup Routine */
+ }
+
+ public function tearDown()
+ {
+ /* Tear Down Routine */
+ }
+
+
+}
+
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 */
+ }
+
+
+}
+
diff --git a/tests/application/controllers/UserControllerTest.php b/tests/application/controllers/UserControllerTest.php
new file mode 100644
index 0000000..8872aa5
--- /dev/null
+++ b/tests/application/controllers/UserControllerTest.php
@@ -0,0 +1,20 @@
+<?php
+
+require_once 'PHPUnit/Framework/TestCase.php';
+
+class UserControllerTest extends PHPUnit_Framework_TestCase
+{
+
+ public function setUp()
+ {
+ /* Setup Routine */
+ }
+
+ public function tearDown()
+ {
+ /* Tear Down Routine */
+ }
+
+
+}
+
diff --git a/tests/library/bootstrap.php b/tests/library/bootstrap.php
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/tests/library/bootstrap.php
diff --git a/tests/phpunit.xml b/tests/phpunit.xml
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/tests/phpunit.xml