You are here

protected function PaymentReferenceItemListTest::setUp in Payment 8.2

Overrides UnitTestCase::setUp

File

modules/payment_reference/tests/src/Unit/Plugin/Field/FieldType/PaymentReferenceItemListTest.php, line 26

Class

PaymentReferenceItemListTest
@coversDefaultClass \Drupal\payment_reference\Plugin\Field\FieldType\PaymentReferenceItemList

Namespace

Drupal\Tests\payment_reference\Unit\Plugin\Field\FieldType

Code

protected function setUp() : void {
  $this->sut = $this
    ->getMockBuilder(PaymentReferenceItemList::class)
    ->disableOriginalConstructor()
    ->setMethods(NULL)
    ->getMock();
}