summaryrefslogtreecommitdiff
path: root/tests/feature
diff options
context:
space:
mode:
authorRico Sonntag <mail@ricosonntag.de>2019-02-22 10:35:54 +0100
committerGreg Roach <fisharebest@gmail.com>2019-02-22 09:35:54 +0000
commit93ccd68614f026f01c7c92e49f24344e66f17edb (patch)
tree227003b9b5030856d86f1cfa7426d6c489627b7f /tests/feature
parenta12992da6391c1a4f028ee877cb8bbb1cf3b6c3d (diff)
downloadwebtrees-93ccd68614f026f01c7c92e49f24344e66f17edb.tar.gz
webtrees-93ccd68614f026f01c7c92e49f24344e66f17edb.tar.bz2
webtrees-93ccd68614f026f01c7c92e49f24344e66f17edb.zip
Moved color interpolation to separate class, renamed helper to servic… (#2248)
* Moved color interpolation to separate class, renamed helper to service, use snake_case in classes * Removed abstract google class
Diffstat (limited to 'tests/feature')
-rw-r--r--tests/feature/EmbeddedVariablesTest.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/feature/EmbeddedVariablesTest.php b/tests/feature/EmbeddedVariablesTest.php
index a6bd44b162..8ebaf2582a 100644
--- a/tests/feature/EmbeddedVariablesTest.php
+++ b/tests/feature/EmbeddedVariablesTest.php
@@ -60,7 +60,6 @@ class EmbeddedVariablesTest extends TestCase
* @covers \Fisharebest\Webtrees\Statistics\Repository\Interfaces\BrowserRepositoryInterface
* @covers \Fisharebest\Webtrees\Statistics\Repository\Interfaces\LatestUserRepositoryInterface
* @covers \Fisharebest\Webtrees\Statistics\Repository\UserRepository
- * @covers \Fisharebest\Webtrees\Statistics\AbstractGoogle
* @covers \Fisharebest\Webtrees\Statistics\Google\ChartChildren
* @covers \Fisharebest\Webtrees\Statistics\Google\ChartAge
* @covers \Fisharebest\Webtrees\Statistics\Google\ChartCommonGiven
@@ -78,8 +77,9 @@ class EmbeddedVariablesTest extends TestCase
* @covers \Fisharebest\Webtrees\Statistics\Google\ChartIndividualWithSources
* @covers \Fisharebest\Webtrees\Statistics\Google\ChartBirth
* @covers \Fisharebest\Webtrees\Statistics\Google\ChartDivorce
- * @covers \Fisharebest\Webtrees\Statistics\Helper\Country
- * @covers \Fisharebest\Webtrees\Statistics\Helper\Century
+ * @covers \Fisharebest\Webtrees\Statistics\Service\CountryService
+ * @covers \Fisharebest\Webtrees\Statistics\Service\CenturyService
+ * @covers \Fisharebest\Webtrees\Statistics\Service\ColorService
* @return void
*/
public function testAllEmbeddedVariables(): void
@@ -127,7 +127,6 @@ class EmbeddedVariablesTest extends TestCase
* @covers \Fisharebest\Webtrees\Statistics\Repository\Interfaces\BrowserRepositoryInterface
* @covers \Fisharebest\Webtrees\Statistics\Repository\Interfaces\LatestUserRepositoryInterface
* @covers \Fisharebest\Webtrees\Statistics\Repository\UserRepository
- * @covers \Fisharebest\Webtrees\Statistics\AbstractGoogle
* @covers \Fisharebest\Webtrees\Statistics\Google\ChartChildren
* @covers \Fisharebest\Webtrees\Statistics\Google\ChartAge
* @covers \Fisharebest\Webtrees\Statistics\Google\ChartCommonGiven
@@ -145,8 +144,9 @@ class EmbeddedVariablesTest extends TestCase
* @covers \Fisharebest\Webtrees\Statistics\Google\ChartIndividualWithSources
* @covers \Fisharebest\Webtrees\Statistics\Google\ChartBirth
* @covers \Fisharebest\Webtrees\Statistics\Google\ChartDivorce
- * @covers \Fisharebest\Webtrees\Statistics\Helper\Country
- * @covers \Fisharebest\Webtrees\Statistics\Helper\Century
+ * @covers \Fisharebest\Webtrees\Statistics\Service\CountryService
+ * @covers \Fisharebest\Webtrees\Statistics\Service\CenturyService
+ * @covers \Fisharebest\Webtrees\Statistics\Service\ColorService
* @return void
*/
public function testAllEmbeddedVariablesWithEmptyTree(): void