diff -u b/core/modules/migrate/tests/Drupal/migrate/Tests/process/DedupeEntityTest.php b/core/modules/migrate/tests/Drupal/migrate/Tests/process/DedupeEntityTest.php --- b/core/modules/migrate/tests/Drupal/migrate/Tests/process/DedupeEntityTest.php +++ b/core/modules/migrate/tests/Drupal/migrate/Tests/process/DedupeEntityTest.php @@ -44,9 +44,11 @@ } /** + * Tests entity based deduplication based on providerTestDedupe() values. + * * @dataProvider provider */ - public function test($count, $postfix = '') { + public function testDedupe($count, $postfix = '') { $configuration = array( 'entity_type' => 'test_entity_type', 'field' => 'test_field', @@ -61,7 +63,10 @@ $this->assertSame($return, 'test' . ($count ? $postfix . $count : '')); } - public function provider() { + /** + * Data provider for testDedupe(). + */ + public function providerTestDedupe() { return array( // Tests the entity deduplication plugin when there is no duplication // and no postfix.