diff options
author | OpenSLX | 2010-01-20 16:47:35 +0100 |
---|---|---|
committer | OpenSLX | 2010-01-20 16:47:35 +0100 |
commit | 04173263974af0e7a354e066b9d7ec9c13c4289d (patch) | |
tree | 82dc2e2662d24e0aaba8a16c4c90b3819c06a662 /tests | |
download | pbs-04173263974af0e7a354e066b9d7ec9c13c4289d.tar.gz pbs-04173263974af0e7a354e066b9d7ec9c13c4289d.tar.xz pbs-04173263974af0e7a354e066b9d7ec9c13c4289d.zip |
initial import
Diffstat (limited to 'tests')
-rw-r--r-- | tests/application/bootstrap.php | 0 | ||||
-rw-r--r-- | tests/application/controllers/BootmediaControllerTest.php | 20 | ||||
-rw-r--r-- | tests/application/controllers/SystemControllerTest.php | 20 | ||||
-rw-r--r-- | tests/application/controllers/UserControllerTest.php | 20 | ||||
-rw-r--r-- | tests/library/bootstrap.php | 0 | ||||
-rw-r--r-- | tests/phpunit.xml | 0 |
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 |