You are here

public function JmesRuntimeFactoryTest::testCreateRuntime in Feeds extensible parsers 8

@covers ::createRuntime

File

tests/src/Unit/JmesRuntimeFactoryTest.php, line 31

Class

JmesRuntimeFactoryTest
@coversDefaultClass \Drupal\feeds_ex\JmesRuntimeFactory @group feeds_ex

Namespace

Drupal\Tests\feeds_ex\Unit

Code

public function testCreateRuntime() {
  $runtime = $this->factory
    ->createRuntime();
  $this
    ->assertTrue(method_exists($runtime, '__invoke'));
}