installEntitySchema('entity_test'); } public function testEntityTestFields() { $entity_test = EntityTest::create([ 'name' => 'test entity name', ]); $entity_test->save(); // @todo Expand the test coverage in https://www.drupal.org/node/2464635 $this->assertFieldAccess('entity_test', 'id', $entity_test->id()); $this->assertFieldAccess('entity_test', 'langcode', $entity_test->language()->getName()); $this->assertFieldAccess('entity_test', 'name', $entity_test->getName()); } }