You are here

class PaymentQueuePaymentIdsAlterTest in Payment 8.2

@coversDefaultClass \Drupal\payment\Event\PaymentQueuePaymentIdsAlter

@group Payment

Hierarchy

Expanded class hierarchy of PaymentQueuePaymentIdsAlterTest

File

tests/src/Unit/Event/PaymentQueuePaymentIdsAlterTest.php, line 13

Namespace

Drupal\Tests\payment\Unit\Event
View source
class PaymentQueuePaymentIdsAlterTest extends UnitTestCase {

  /**
   * The queue category ID.
   *
   * @var string
   */
  protected $categoryId;

  /**
   * The ID of the user that must own the payments.
   *
   * @var int
   */
  protected $ownerId;

  /**
   * The IDs of available payments as loaded by the queue.
   *
   * @var int[]
   */
  protected $paymentIds;

  /**
   * The queue ID.
   *
   * @var string
   */
  protected $queueId;

  /**
   * The class under test.
   *
   * @var \Drupal\payment\Event\PaymentQueuePaymentIdsAlter
   */
  protected $sut;

  /**
   * {@inheritdoc}
   */
  public function setUp() : void {
    $this->categoryId = $this
      ->randomMachineName();
    $this->ownerId = $this
      ->randomMachineName();
    $this->paymentIds = array(
      $this
        ->randomMachineName(),
    );
    $this->sut = new PaymentQueuePaymentIdsAlter($this->queueId, $this->categoryId, $this->ownerId, $this->paymentIds);
  }

  /**
   * @covers ::getQueueId
   */
  public function testGetQueueId() {
    $this
      ->assertSame($this->queueId, $this->sut
      ->getQueueId());
  }

  /**
   * @covers ::getCategoryId
   */
  public function testGetCategoryId() {
    $this
      ->assertSame($this->categoryId, $this->sut
      ->getCategoryId());
  }

  /**
   * @covers ::getOwnerId
   */
  public function testGetOwnerId() {
    $this
      ->assertSame($this->ownerId, $this->sut
      ->getOwnerId());
  }

  /**
   * @covers ::getPaymentIds
   * @covers ::setPaymentIds
   */
  public function testGetPaymentIds() {
    $this
      ->assertSame($this->paymentIds, $this->sut
      ->getPaymentIds());
    $payment_ids = array(
      $this
        ->randomMachineName(),
    );
    $this
      ->assertSame($this->sut, $this->sut
      ->setPaymentIds($payment_ids));
    $this
      ->assertSame($payment_ids, $this->sut
      ->getPaymentIds());
  }

}

Members

Namesort descending Modifiers Type Description Overrides
PaymentQueuePaymentIdsAlterTest::$categoryId protected property The queue category ID.
PaymentQueuePaymentIdsAlterTest::$ownerId protected property The ID of the user that must own the payments.
PaymentQueuePaymentIdsAlterTest::$paymentIds protected property The IDs of available payments as loaded by the queue.
PaymentQueuePaymentIdsAlterTest::$queueId protected property The queue ID.
PaymentQueuePaymentIdsAlterTest::$sut protected property The class under test.
PaymentQueuePaymentIdsAlterTest::setUp public function Overrides UnitTestCase::setUp
PaymentQueuePaymentIdsAlterTest::testGetCategoryId public function @covers ::getCategoryId
PaymentQueuePaymentIdsAlterTest::testGetOwnerId public function @covers ::getOwnerId
PaymentQueuePaymentIdsAlterTest::testGetPaymentIds public function @covers ::getPaymentIds @covers ::setPaymentIds
PaymentQueuePaymentIdsAlterTest::testGetQueueId public function @covers ::getQueueId
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.