You are here

public function MigrateTestBase::startCollectingMessages in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/migrate/src/Tests/MigrateTestBase.php \Drupal\migrate\Tests\MigrateTestBase::startCollectingMessages()

Start collecting messages and erase previous messages.

3 calls to MigrateTestBase::startCollectingMessages()
MigrateDependenciesTest::testAggregatorMigrateDependencies in core/modules/migrate_drupal/src/Tests/dependencies/MigrateDependenciesTest.php
Tests dependencies on the migration of aggregator feeds & items.
MigrateImageCacheTest::testInvalidCropValues in core/modules/image/src/Tests/Migrate/d6/MigrateImageCacheTest.php
Test that missing action's causes failures.
MigrateImageCacheTest::testMissingEffectPlugin in core/modules/image/src/Tests/Migrate/d6/MigrateImageCacheTest.php
Test that missing actions causes failures.

File

core/modules/migrate/src/Tests/MigrateTestBase.php, line 190
Contains \Drupal\migrate\Tests\MigrateTestBase.

Class

MigrateTestBase
Base class for migration tests.

Namespace

Drupal\migrate\Tests

Code

public function startCollectingMessages() {
  $this->collectMessages = TRUE;
  $this->migrateMessages = array();
}