Skip to content

Commit

Permalink
Additional PHPdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
emetsger committed May 4, 2021
1 parent 80fa9b6 commit 12d90d9
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tests/Plugin/migrate/process/ParseEntityLookupTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,9 @@ public function testTransformOk() {
self::assertTrue($transformInvoked);
}

/**
* Improper formatting of the source value should result in a MigrateException
*/
public function testTransformInvalidSourceValueTooSmall() {
// The source value from the spreadsheet in the form:
// <entity type>:<bundle>:<value_key>:<value>
Expand All @@ -368,6 +371,9 @@ public function testTransformInvalidSourceValueTooSmall() {
}
}

/**
* Improper formatting of the source value should result in a MigrateException
*/
public function testTransformInvalidSourceValueTooBig() {
// The source value from the spreadsheet in the form:
// <entity type>:<bundle>:<value_key>:<value>
Expand All @@ -384,6 +390,9 @@ public function testTransformInvalidSourceValueTooBig() {
}
}

/**
* Improper formatting of the source value should result in a MigrateException
*/
public function testTransformInvalidSourceValueEmptyLastElement() {
// The source value from the spreadsheet in the form:
// <entity type>:<bundle>:<value_key>:<value>
Expand Down

0 comments on commit 12d90d9

Please sign in to comment.