You are here

public function TestBaseTest::testGetRandomGenerator in SimpleTest 8.3

@covers ::getRandomGenerator

File

tests/src/Unit/TestBaseTest.php, line 462

Class

TestBaseTest
@requires extension curl @coversDefaultClass \Drupal\simpletest\TestBase @group simpletest @group TestBase

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', []));
}