diff options
| author | Greg Roach <fisharebest@webtrees.net> | 2018-09-28 10:13:10 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@webtrees.net> | 2018-09-28 10:13:10 +0100 |
| commit | 18d7a90d8a3b33b218801c0b68eb1a5140d7b4e7 (patch) | |
| tree | 3fe6aa4265c2cfd926b310dae92acd24fe24a17b /tests/app/MenuTest.php | |
| parent | 52348eb8c11b06a8488e13475e6561273832716a (diff) | |
| download | webtrees-18d7a90d8a3b33b218801c0b68eb1a5140d7b4e7.tar.gz webtrees-18d7a90d8a3b33b218801c0b68eb1a5140d7b4e7.tar.bz2 webtrees-18d7a90d8a3b33b218801c0b68eb1a5140d7b4e7.zip | |
PHPdoc
Diffstat (limited to 'tests/app/MenuTest.php')
| -rw-r--r-- | tests/app/MenuTest.php | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/app/MenuTest.php b/tests/app/MenuTest.php index 79bf162f11..a6e2280cd0 100644 --- a/tests/app/MenuTest.php +++ b/tests/app/MenuTest.php @@ -33,6 +33,8 @@ class MenuTest extends \Fisharebest\Webtrees\TestCase /** * Test the constructor with default parameters. + * + * @return void */ public function testConstructorDefaults() { @@ -47,6 +49,8 @@ class MenuTest extends \Fisharebest\Webtrees\TestCase /** * Test the constructor with non-default parameters. + * + * @return void */ public function testConstructorNonDefaults() { @@ -62,6 +66,8 @@ class MenuTest extends \Fisharebest\Webtrees\TestCase /** * Test the getter/setter for the label. + * + * @return void */ public function testGetterSetterLabel() { @@ -75,6 +81,8 @@ class MenuTest extends \Fisharebest\Webtrees\TestCase /** * Test the getter/setter for the link. + * + * @return void */ public function testGetterSetterLink() { @@ -88,6 +96,8 @@ class MenuTest extends \Fisharebest\Webtrees\TestCase /** * Test the getter/setter for the ID. + * + * @return void */ public function testGetterSetterId() { @@ -101,6 +111,8 @@ class MenuTest extends \Fisharebest\Webtrees\TestCase /** * Test the getter/setter for the Attrs event. + * + * @return void */ public function testGetterSetterAttrs() { @@ -114,6 +126,8 @@ class MenuTest extends \Fisharebest\Webtrees\TestCase /** * Test the getter/setter for the submenus. + * + * @return void */ public function testGetterSetterSubmenus() { @@ -131,6 +145,8 @@ class MenuTest extends \Fisharebest\Webtrees\TestCase /** * Test the list rendering for a simple link. + * + * @return void */ public function testFormatAsList() { @@ -141,6 +157,8 @@ class MenuTest extends \Fisharebest\Webtrees\TestCase /** * Test the list rendering for a simple link with a CSS ID. + * + * @return void */ public function testFormatAsListWithClass() { @@ -151,6 +169,8 @@ class MenuTest extends \Fisharebest\Webtrees\TestCase /** * Test the list rendering for an empty target. + * + * @return void */ public function testFormatAsListWithNoTarget() { @@ -161,6 +181,8 @@ class MenuTest extends \Fisharebest\Webtrees\TestCase /** * Test the list rendering for a default (hash) target. + * + * @return void */ public function testFormatAsListWithHashTarget() { @@ -171,6 +193,8 @@ class MenuTest extends \Fisharebest\Webtrees\TestCase /** * Test the list rendering for an onclick link. + * + * @return void */ public function testFormatAsListWithAttrs() { @@ -181,6 +205,8 @@ class MenuTest extends \Fisharebest\Webtrees\TestCase /** * Test the list rendering for an onclick link. + * + * @return void */ public function testFormatAsListWithAttrsAndId() { |
