You are here

public function ExistenceCheckingTest::testExistenceCheckDefault in YAML Content 8

Confirm the default value for existenceCheck().

@covers ::existenceCheck

Return value

\Drupal\yaml_content\ContentLoader\ContentLoader The ContentLoader service being tested.

File

tests/src/Unit/ContentLoader/ExistenceCheckingTest.php, line 58

Class

ExistenceCheckingTest
Test the existence checking functionality of the ContentLoader class.

Namespace

Drupal\Tests\yaml_content\Unit\ContentLoader

Code

public function testExistenceCheckDefault() {
  $this
    ->assertFalse($this->contentLoader
    ->existenceCheck());
  return $this->contentLoader;
}