From d20571ab4790747fbd6fa88c50f8d0ba4e511e63 Mon Sep 17 00:00:00 2001 From: Jeroen De Dauw Date: Mon, 1 Oct 2018 08:40:18 +0200 Subject: [PATCH] Fix @covers tag FQNs --- tests/Integration/parsers/RectlangleParserTest.php | 2 +- tests/Unit/ElementTest.php | 2 +- tests/Unit/Elements/CircleTest.php | 2 +- tests/Unit/Elements/LineTest.php | 2 +- tests/Unit/Elements/LocationTest.php | 2 +- tests/Unit/Elements/PolygonTest.php | 2 +- tests/Unit/Elements/RectangleTest.php | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/tests/Integration/parsers/RectlangleParserTest.php b/tests/Integration/parsers/RectlangleParserTest.php index 9dbedcdae..ca3143a28 100644 --- a/tests/Integration/parsers/RectlangleParserTest.php +++ b/tests/Integration/parsers/RectlangleParserTest.php @@ -10,7 +10,7 @@ use PHPUnit\Framework\TestCase; /** - * @covers Maps\RectangleParser + * @covers \Maps\RectangleParser * @licence GNU GPL v2+ * @author Jeroen De Dauw < jeroendedauw@gmail.com > */ diff --git a/tests/Unit/ElementTest.php b/tests/Unit/ElementTest.php index 7971583d3..4d4e76f43 100644 --- a/tests/Unit/ElementTest.php +++ b/tests/Unit/ElementTest.php @@ -10,7 +10,7 @@ use PHPUnit\Framework\TestCase; /** - * @covers Maps\Elements\BaseElement + * @covers \Maps\Elements\BaseElement * * @licence GNU GPL v2+ * @author Jeroen De Dauw < jeroendedauw@gmail.com > diff --git a/tests/Unit/Elements/CircleTest.php b/tests/Unit/Elements/CircleTest.php index 6fefac554..84c6db14d 100644 --- a/tests/Unit/Elements/CircleTest.php +++ b/tests/Unit/Elements/CircleTest.php @@ -6,7 +6,7 @@ use Maps\Elements\Circle; /** - * @covers Maps\Elements\Circle + * @covers \Maps\Elements\Circle * * @licence GNU GPL v2+ * @author Jeroen De Dauw < jeroendedauw@gmail.com > diff --git a/tests/Unit/Elements/LineTest.php b/tests/Unit/Elements/LineTest.php index dffd50e9d..ddd274c98 100644 --- a/tests/Unit/Elements/LineTest.php +++ b/tests/Unit/Elements/LineTest.php @@ -6,7 +6,7 @@ use Maps\Elements\Line; /** - * @covers Maps\Elements\Line + * @covers \Maps\Elements\Line * * @licence GNU GPL v2+ * @author Jeroen De Dauw < jeroendedauw@gmail.com > diff --git a/tests/Unit/Elements/LocationTest.php b/tests/Unit/Elements/LocationTest.php index 0ae940c5d..092abaf6f 100644 --- a/tests/Unit/Elements/LocationTest.php +++ b/tests/Unit/Elements/LocationTest.php @@ -7,7 +7,7 @@ use PHPUnit\Framework\TestCase; /** - * @covers Maps\Elements\Location + * @covers \Maps\Elements\Location * * @licence GNU GPL v2+ * @author Jeroen De Dauw < jeroendedauw@gmail.com > diff --git a/tests/Unit/Elements/PolygonTest.php b/tests/Unit/Elements/PolygonTest.php index deffee00a..f37e301d1 100644 --- a/tests/Unit/Elements/PolygonTest.php +++ b/tests/Unit/Elements/PolygonTest.php @@ -5,7 +5,7 @@ use Maps\Elements\Polygon; /** - * @covers Maps\Elements\Polygon + * @covers \Maps\Elements\Polygon * * @licence GNU GPL v2+ * @author Jeroen De Dauw < jeroendedauw@gmail.com > diff --git a/tests/Unit/Elements/RectangleTest.php b/tests/Unit/Elements/RectangleTest.php index 473806a81..46ded4ef7 100644 --- a/tests/Unit/Elements/RectangleTest.php +++ b/tests/Unit/Elements/RectangleTest.php @@ -6,7 +6,7 @@ use Maps\Elements\Rectangle; /** - * @covers Maps\Elements\Rectangle + * @covers \Maps\Elements\Rectangle * * @licence GNU GPL v2+ * @author Jeroen De Dauw < jeroendedauw@gmail.com >