installEntitySchema('aggregator_feed'); $this->installEntitySchema('aggregator_item'); } /** * Tests attempting to create a feed item without a feed. */ public function testEntityCreation() { $entity = Item::create([ 'title' => t('Llama 2'), 'path' => 'https://groups.drupal.org/', ]); $violations = $entity->validate(); $this->assertCount(1, $violations); } }