You are here

public function TaxRateTest::testMissingProperty in Commerce Core 8.2

@covers ::__construct

File

modules/tax/tests/src/Kernel/TaxRateTest.php, line 18

Class

TaxRateTest
@coversDefaultClass \Drupal\commerce_tax\TaxRate @group commerce

Namespace

Drupal\Tests\commerce_tax\Kernel

Code

public function testMissingProperty() {
  $this
    ->expectException(\InvalidArgumentException::class);
  $definition = [
    'id' => 'test',
  ];
  new TaxRate($definition);
}