diff options
| author | Greg Roach <fisharebest@gmail.com> | 2014-08-25 19:17:13 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@gmail.com> | 2014-08-26 15:12:34 +0100 |
| commit | 3344c7f9d5916db002d54f3565cc61f74a94b2be (patch) | |
| tree | 29618b643761e1c65dfce8e95cf05876cc8a00e2 /tests/library/WT/ModuleTest.php | |
| parent | 6257370d0a72962f1dacf4fa8e1c633028405b67 (diff) | |
| download | webtrees-3344c7f9d5916db002d54f3565cc61f74a94b2be.tar.gz webtrees-3344c7f9d5916db002d54f3565cc61f74a94b2be.tar.bz2 webtrees-3344c7f9d5916db002d54f3565cc61f74a94b2be.zip | |
Initial framework for unit tests
Diffstat (limited to 'tests/library/WT/ModuleTest.php')
| -rw-r--r-- | tests/library/WT/ModuleTest.php | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/library/WT/ModuleTest.php b/tests/library/WT/ModuleTest.php new file mode 100644 index 0000000000..7171855076 --- /dev/null +++ b/tests/library/WT/ModuleTest.php @@ -0,0 +1,31 @@ +<?php +namespace WT; + +use PHPUnit_Framework_TestCase; + +/** + * Test harness for the class WT_Module + * + * @package webtrees + * @author Greg Roach <fisharebest@gmail.com> + * @copyright (c) 2014 webtrees development team + * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 + */ + +class ModuleTest extends PHPUnit_Framework_TestCase { + /** + * Prepare the environment for these tests + * + * @return void + */ + public function setUp() { + } + + /** + * Test FooBar + * + * @return void + */ + public function testFooBar() { + } +} |
