InlineBlockUsageTest.php
Same filename in other branches
- 8.9.x core/modules/layout_builder/tests/src/Unit/InlineBlockUsageTest.php
- 10 core/modules/layout_builder/tests/src/Unit/InlineBlockUsageTest.php
- 10 core/modules/layout_builder/tests/src/Kernel/InlineBlockUsageTest.php
- 11.x core/modules/layout_builder/tests/src/Unit/InlineBlockUsageTest.php
- 11.x core/modules/layout_builder/tests/src/Kernel/InlineBlockUsageTest.php
Namespace
Drupal\Tests\layout_builder\UnitFile
-
core/
modules/ layout_builder/ tests/ src/ Unit/ InlineBlockUsageTest.php
View source
<?php
namespace Drupal\Tests\layout_builder\Unit;
use Drupal\Core\Database\Connection;
use Drupal\layout_builder\InlineBlockUsage;
use Drupal\Tests\UnitTestCase;
/**
* @coversDefaultClass \Drupal\layout_builder\InlineBlockUsage
*
* @group layout_builder
*/
class InlineBlockUsageTest extends UnitTestCase {
/**
* Tests calling deleteUsage() with empty array.
*
* @covers ::deleteUsage
*/
public function testEmptyDeleteUsageCall() {
$connection = $this->prophesize(Connection::class);
$connection->delete('inline_block_usage')
->shouldNotBeCalled();
(new InlineBlockUsage($connection->reveal()))
->deleteUsage([]);
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
InlineBlockUsageTest | @coversDefaultClass \Drupal\layout_builder\InlineBlockUsage |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.