You are here

public function RowTest::testRowWithoutData in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/migrate/tests/src/Unit/RowTest.php \Drupal\Tests\migrate\Unit\RowTest::testRowWithoutData()
  2. 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\Unit

Code

public function testRowWithoutData() {
  $row = new Row();
  $this
    ->assertSame([], $row
    ->getSource(), 'Empty row');
}