function ChainEntityResolverTest::testResolverWithNoneResolved
Tests the resolve method with no matching resolvers.
@covers ::__construct
      
    
@covers ::resolve
      
    
File
- 
              core/
modules/ serialization/ tests/ src/ Unit/ EntityResolver/ ChainEntityResolverTest.php, line 49  
Class
- ChainEntityResolverTest
 - @coversDefaultClass \Drupal\serialization\EntityResolver\ChainEntityResolver[[api-linebreak]] @group serialization
 
Namespace
Drupal\Tests\serialization\Unit\EntityResolverCode
public function testResolverWithNoneResolved() {
  $resolvers = [
    $this->createEntityResolverMock(),
    $this->createEntityResolverMock(),
  ];
  $resolver = new ChainEntityResolver($resolvers);
  $this->assertNull($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.