You are here

class LogCategoryTest in Commerce Core 8.2

@coversDefaultClass \Drupal\commerce_log\Plugin\LogCategory\LogCategory @group commerce

Hierarchy

Expanded class hierarchy of LogCategoryTest

File

modules/log/tests/src/Unit/LogCategoryTest.php, line 12

Namespace

Drupal\Tests\commerce_log\Unit
View source
class LogCategoryTest extends UnitTestCase {

  /**
   * The log category.
   *
   * @var \Drupal\commerce_log\Plugin\LogCategory\LogCategoryInterface
   */
  protected $logCategory;

  /**
   * The plugin definition array.
   *
   * @var array
   */
  protected $definition = [
    'id' => 'entity_test',
    'label' => 'Entity Test',
    'entity_type' => 'entity_test',
    'provider' => 'commerce_log_test',
  ];

  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this->logCategory = new LogCategory([], 'order', $this->definition);
  }

  /**
   * @covers ::getId
   */
  public function testGetId() {
    $this
      ->assertEquals($this->definition['id'], $this->logCategory
      ->getId());
  }

  /**
   * @covers ::getLabel
   */
  public function testGetLabel() {
    $this
      ->assertEquals($this->definition['label'], $this->logCategory
      ->getLabel());
  }

  /**
   * @covers ::getEntityTypeId
   */
  public function testGetEntityTypeId() {
    $this
      ->assertEquals($this->definition['entity_type'], $this->logCategory
      ->getEntityTypeId());
  }

}

Members

Namesort descending Modifiers Type Description Overrides
LogCategoryTest::$definition protected property The plugin definition array.
LogCategoryTest::$logCategory protected property The log category.
LogCategoryTest::setUp protected function Overrides UnitTestCase::setUp
LogCategoryTest::testGetEntityTypeId public function @covers ::getEntityTypeId
LogCategoryTest::testGetId public function @covers ::getId
LogCategoryTest::testGetLabel public function @covers ::getLabel
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.