You are here

public function MigrateExecutableMemoryExceededTest::testMemoryNotExceeded in Drupal 8

Tests memoryExceeded when memory usage is not exceeded.

File

core/modules/migrate/tests/src/Unit/MigrateExecutableMemoryExceededTest.php, line 118

Class

MigrateExecutableMemoryExceededTest
Tests the \Drupal\migrate\MigrateExecutable::memoryExceeded() method.

Namespace

Drupal\Tests\migrate\Unit

Code

public function testMemoryNotExceeded() {
  $this
    ->runMemoryExceededTest('', FALSE, floor($this->memoryLimit * 0.85) - 1);
}