You are here

CommentSourceWithHighWaterTest.php in Zircon Profile 8

File

core/modules/comment/tests/src/Unit/Migrate/d6/CommentSourceWithHighWaterTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\Tests\comment\Unit\Migrate\d6\CommentSourceWithHighWaterTest.
 */
namespace Drupal\Tests\comment\Unit\Migrate\d6;


/**
 * Tests the Drupal 6 comment source w/ high water handling.
 *
 * @group comment
 */
class CommentSourceWithHighWaterTest extends CommentTestBase {
  const ORIGINAL_HIGH_WATER = 1382255613;

  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    $this->migrationConfiguration['highWaterProperty']['field'] = 'timestamp';
    array_shift($this->expectedResults);
    parent::setUp();
  }

}

Classes

Namesort descending Description
CommentSourceWithHighWaterTest Tests the Drupal 6 comment source w/ high water handling.