public function RowTest::testRowWithoutData in Drupal 8
Same name and namespace in other branches
- 9 core/modules/migrate/tests/src/Unit/RowTest.php \Drupal\Tests\migrate\Unit\RowTest::testRowWithoutData()
- 10 core/modules/migrate/tests/src/Unit/RowTest.php \Drupal\Tests\migrate\Unit\RowTest::testRowWithoutData()
Tests object creation: empty.
File
- core/
modules/ migrate/ tests/ src/ Unit/ RowTest.php, line 88
Class
- RowTest
- @coversDefaultClass \Drupal\migrate\Row @group migrate
Namespace
Drupal\Tests\migrate\UnitCode
public function testRowWithoutData() {
$row = new Row();
$this
->assertSame([], $row
->getSource(), 'Empty row');
}