public function ItemWithoutFeedTest::testEntityCreation in Drupal 8
Same name and namespace in other branches
- 9 core/modules/aggregator/tests/src/Kernel/ItemWithoutFeedTest.php \Drupal\Tests\aggregator\Kernel\ItemWithoutFeedTest::testEntityCreation()
Tests attempting to create a feed item without a feed.
File
- core/
modules/ aggregator/ tests/ src/ Kernel/ ItemWithoutFeedTest.php, line 32
Class
- ItemWithoutFeedTest
- Tests clean handling of an item with a missing feed ID.
Namespace
Drupal\Tests\aggregator\KernelCode
public function testEntityCreation() {
$entity = Item::create([
'title' => t('Llama 2'),
'path' => 'https://groups.drupal.org/',
]);
$violations = $entity
->validate();
$this
->assertCount(1, $violations);
}