function ChainEntityResolverTest::testResolverWithResolvedToZero

Same name and namespace in other branches
  1. 9 core/modules/serialization/tests/src/Unit/EntityResolver/ChainEntityResolverTest.php \Drupal\Tests\serialization\Unit\EntityResolver\ChainEntityResolverTest::testResolverWithResolvedToZero()
  2. 8.9.x core/modules/serialization/tests/src/Unit/EntityResolver/ChainEntityResolverTest.php \Drupal\Tests\serialization\Unit\EntityResolver\ChainEntityResolverTest::testResolverWithResolvedToZero()
  3. 10 core/modules/serialization/tests/src/Unit/EntityResolver/ChainEntityResolverTest.php \Drupal\Tests\serialization\Unit\EntityResolver\ChainEntityResolverTest::testResolverWithResolvedToZero()

Tests the resolve method where one resolver returns 0.

@covers ::__construct
@covers ::resolve

File

core/modules/serialization/tests/src/Unit/EntityResolver/ChainEntityResolverTest.php, line 118

Class

ChainEntityResolverTest
@coversDefaultClass \Drupal\serialization\EntityResolver\ChainEntityResolver[[api-linebreak]] @group serialization

Namespace

Drupal\Tests\serialization\Unit\EntityResolver

Code

public function testResolverWithResolvedToZero() : void {
  $resolvers = [
    $this->createEntityResolverMock(0),
    $this->createEntityResolverMock(NULL, FALSE),
  ];
  $resolver = new ChainEntityResolver($resolvers);
  $this->assertSame(0, $resolver->resolve($this->testNormalizer, $this->testData, $this->testEntityType));
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.