You are here

public function TestBaseTest::testGetRandomGenerator in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/simpletest/tests/src/Unit/TestBaseTest.php \Drupal\Tests\simpletest\Unit\TestBaseTest::testGetRandomGenerator()

@covers ::getRandomGenerator

File

core/modules/simpletest/tests/src/Unit/TestBaseTest.php, line 465
Contains \Drupal\Tests\simpletest\Unit\TestBaseTest.

Class

TestBaseTest
@coversDefaultClass \Drupal\simpletest\TestBase @group simpletest

Namespace

Drupal\Tests\simpletest\Unit

Code

public function testGetRandomGenerator() {
  $test_base = $this
    ->getTestBaseForAssertionTests('test_id');
  $this
    ->assertInstanceOf('Drupal\\Component\\Utility\\Random', $this
    ->invokeProtectedMethod($test_base, 'getRandomGenerator', array()));
}