public function EntityLoadHelperTest::testCategorizeAttributesProperlyIdentifiesOther in YAML Content 8
Test categorizeAttributes identifies "other" attributes as expected.
@covers ::categorizeAttributes @covers ::identifyAttributeType
@dataProvider attributeCategorizationProvider
File
- tests/src/ Unit/ EntityLoadHelper/ EntityLoadHelperTest.php, line 522 
Class
- EntityLoadHelperTest
- Test functionality of the EntityLoadHelper class.
Namespace
Drupal\Tests\yaml_content\Unit\EntityLoadHelperCode
public function testCategorizeAttributesProperlyIdentifiesOther($entity_type, $content, $expected) {
  $this
    ->setUpCategorizeAttributesTests();
  // Execute the method.
  $actual = $this->loadHelper
    ->categorizeAttributes($entity_type, $content);
  $this
    ->assertArrayEquals($expected['other'], $actual['other']);
}