public function EntityRevisionTest::testSave in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/migrate/tests/src/Unit/destination/EntityRevisionTest.php \Drupal\Tests\migrate\Unit\destination\EntityRevisionTest::testSave()
Test entity revision save.
@covers ::save
File
- core/
modules/ migrate/ tests/ src/ Unit/ destination/ EntityRevisionTest.php, line 160 - Contains \Drupal\Tests\migrate\Unit\destination\EntityRevisionTest.
Class
- EntityRevisionTest
- Tests entity revision destination.
Namespace
Drupal\Tests\migrate\Unit\destinationCode
public function testSave() {
$entity = $this
->prophesize('\\Drupal\\Core\\Entity\\ContentEntityInterface');
$entity
->save()
->shouldBeCalled();
$entity
->getRevisionId()
->shouldBeCalled()
->willReturn(1234);
$destination = $this
->getEntityRevisionDestination();
$this
->assertEquals([
1234,
], $destination
->save($entity
->reveal(), []));
}