diff options
| author | Greg Roach <fisharebest@webtrees.net> | 2018-07-16 08:20:33 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@webtrees.net> | 2018-07-16 08:20:33 +0100 |
| commit | c1010eda29c0909ed4d5d463f32d32bfefdd4dfe (patch) | |
| tree | fbb656ebc014aa1295ac8e6176f41e89f94b91e7 /tests/app/Report | |
| parent | 782f08d9bd2bfa06635da947ee34f8e1afd65088 (diff) | |
| download | webtrees-c1010eda29c0909ed4d5d463f32d32bfefdd4dfe.tar.gz webtrees-c1010eda29c0909ed4d5d463f32d32bfefdd4dfe.tar.bz2 webtrees-c1010eda29c0909ed4d5d463f32d32bfefdd4dfe.zip | |
Use PSR2 code style
Diffstat (limited to 'tests/app/Report')
| -rw-r--r-- | tests/app/Report/ReportBaseTest.php | 27 | ||||
| -rw-r--r-- | tests/app/Report/ReportHTMLTest.php | 27 | ||||
| -rw-r--r-- | tests/app/Report/ReportPDFTest.php | 27 |
3 files changed, 45 insertions, 36 deletions
diff --git a/tests/app/Report/ReportBaseTest.php b/tests/app/Report/ReportBaseTest.php index 8179346899..a2a8169bab 100644 --- a/tests/app/Report/ReportBaseTest.php +++ b/tests/app/Report/ReportBaseTest.php @@ -18,17 +18,20 @@ /** * Test harness for the class ReportBase */ -class ReportBaseTest extends \PHPUnit\Framework\TestCase { - /** - * Prepare the environment for these tests - */ - public function setUp() { - } +class ReportBaseTest extends \PHPUnit\Framework\TestCase +{ + /** + * Prepare the environment for these tests + */ + public function setUp() + { + } - /** - * Test that the class exists - */ - public function testClassExists() { - $this->assertTrue(class_exists('\Fisharebest\Webtrees\Report\ReportBase')); - } + /** + * Test that the class exists + */ + public function testClassExists() + { + $this->assertTrue(class_exists('\Fisharebest\Webtrees\Report\ReportBase')); + } } diff --git a/tests/app/Report/ReportHTMLTest.php b/tests/app/Report/ReportHTMLTest.php index d4a03db60c..11f09bf4e4 100644 --- a/tests/app/Report/ReportHTMLTest.php +++ b/tests/app/Report/ReportHTMLTest.php @@ -18,17 +18,20 @@ /** * Test harness for the class ReportHtml */ -class ReportHTMLTest extends \PHPUnit\Framework\TestCase { - /** - * Prepare the environment for these tests - */ - public function setUp() { - } +class ReportHTMLTest extends \PHPUnit\Framework\TestCase +{ + /** + * Prepare the environment for these tests + */ + public function setUp() + { + } - /** - * Test that the class exists - */ - public function testClassExists() { - $this->assertTrue(class_exists('\Fisharebest\Webtrees\Report\ReportHtml')); - } + /** + * Test that the class exists + */ + public function testClassExists() + { + $this->assertTrue(class_exists('\Fisharebest\Webtrees\Report\ReportHtml')); + } } diff --git a/tests/app/Report/ReportPDFTest.php b/tests/app/Report/ReportPDFTest.php index f7b6c4b1c5..98e5ef2a0a 100644 --- a/tests/app/Report/ReportPDFTest.php +++ b/tests/app/Report/ReportPDFTest.php @@ -18,17 +18,20 @@ /** * Test harness for the class ReportPdf */ -class ReportPDFTest extends \PHPUnit\Framework\TestCase { - /** - * Prepare the environment for these tests - */ - public function setUp() { - } +class ReportPDFTest extends \PHPUnit\Framework\TestCase +{ + /** + * Prepare the environment for these tests + */ + public function setUp() + { + } - /** - * Test that the class exists - */ - public function testClassExists() { - $this->assertTrue(class_exists('\Fisharebest\Webtrees\Report\ReportPdf')); - } + /** + * Test that the class exists + */ + public function testClassExists() + { + $this->assertTrue(class_exists('\Fisharebest\Webtrees\Report\ReportPdf')); + } } |
