You are here

abstract class ConfigEntityReferenceTestBase in Feeds 8.3

@coversDefaultClass \Drupal\feeds\Feeds\Target\ConfigEntityReference @group feeds

Hierarchy

Expanded class hierarchy of ConfigEntityReferenceTestBase

File

tests/src/Unit/Feeds/Target/ConfigEntityReferenceTestBase.php, line 12

Namespace

Drupal\Tests\feeds\Unit\Feeds\Target
View source
abstract class ConfigEntityReferenceTestBase extends EntityReferenceTestBase {

  /**
   * The transliteration manager.
   *
   * @var \Prophecy\Prophecy\ProphecyInterface|\Drupal\Component\Transliteration\TransliterationInterface
   */
  protected $transliteration;

  /**
   * The manager for managing config schema type plugins.
   *
   * @var \Prophecy\Prophecy\ProphecyInterface|\Drupal\Core\Config\TypedConfigManagerInterface
   */
  protected $typedConfigManager;

  /**
   * {@inheritdoc}
   */
  public function setUp() {
    parent::setUp();
    $this->transliteration = $this
      ->prophesize(TransliterationInterface::class);
    $this->typedConfigManager = $this
      ->prophesize(TypedConfigManagerInterface::class);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
ConfigEntityReferenceTestBase::$transliteration protected property The transliteration manager.
ConfigEntityReferenceTestBase::$typedConfigManager protected property The manager for managing config schema type plugins.
ConfigEntityReferenceTestBase::setUp public function Overrides EntityReferenceTestBase::setUp 2
EntityReferenceTestBase::$entityFinder protected property The Feeds entity finder service.
EntityReferenceTestBase::$entityStorage protected property The entity storage prophecy used in the test.
EntityReferenceTestBase::$entityTypeManager protected property The entity type manager prophecy used in the test.
EntityReferenceTestBase::buildContainer protected function Builds the Drupal service container.
EntityReferenceTestBase::createReferencableEntityType abstract protected function Creates a referencable entity type instance. 3
EntityReferenceTestBase::createTargetDefinitionMock protected function Creates a Feeds target definition mock.
EntityReferenceTestBase::createTargetPluginInstance abstract protected function Creates a new target plugin instance. 3
EntityReferenceTestBase::getEntityStorageClass protected function Returns the entity storage class name to use in this test. 1
EntityReferenceTestBase::getReferencableEntityTypeId protected function Returns the entity type machine name to use in this test. 1
EntityReferenceTestBase::testPrepareTarget public function @covers ::prepareTarget Overrides FieldTargetTestBase::testPrepareTarget 1
EntityReferenceTestBase::testPrepareValueEmptyFeed public function Tests prepareValue() without passing values. 1
FeedsMockingTrait::getMockAccount protected function Mocks an account object.
FeedsMockingTrait::getMockedAccountSwitcher protected function Returns a mocked AccountSwitcher object.
FeedsMockingTrait::getMockFeed protected function Returns a mocked feed entity.
FeedsMockingTrait::getMockFeedType protected function Returns a mocked feed type entity.
FeedsMockingTrait::getMockFieldDefinition protected function Mocks a field definition. 1
FeedsMockingTrait::getMockFileSystem protected function Mocks the file system.
FeedsReflectionTrait::callProtectedMethod protected function Calls a protected method on the given object.
FeedsReflectionTrait::getMethod protected function Gets a ReflectionMethod for a class method.
FeedsReflectionTrait::getProtectedClosure protected function Returns a dynamically created closure for the object's method.
FeedsReflectionTrait::setProtectedProperty protected function Sets a protected property.
FeedsUnitTestCase::absolutePath protected function Returns the absolute directory path of the Feeds module.
FeedsUnitTestCase::defineConstants protected function Defines stub constants.
FeedsUnitTestCase::getMockStreamWrapperManager protected function Returns a mock stream wrapper manager.
FeedsUnitTestCase::resourcesPath protected function Returns the absolute directory path of the resources folder.
FieldTargetTestBase::getTargetClass abstract protected function Returns the target class. 20
PhpunitCompatibilityTrait::getMock Deprecated public function Returns a mock object for the specified class using the available method.
PhpunitCompatibilityTrait::setExpectedException Deprecated public function Compatibility layer for PHPUnit 6 to support PHPUnit 4 code.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getBlockMockWithMachineName Deprecated protected function Mocks a block with a block plugin. 1
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.