class CornersModifierTest in Modifiers Pack 8
@coversDefaultClass \Drupal\modifiers_corners\Plugin\modifiers\CornersModifier @group modifiers_pack
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses PhpunitCompatibilityTrait
- class \Drupal\Tests\modifiers_corners\Unit\CornersModifierTest
Expanded class hierarchy of CornersModifierTest
File
- modules/
modifiers_corners/ tests/ src/ Unit/ CornersModifierTest.php, line 12
Namespace
Drupal\Tests\modifiers_corners\UnitView source
class CornersModifierTest extends UnitTestCase {
/**
* @covers ::modification
*/
public function testModification() {
// Top left and right corners.
$actual_1 = CornersModifier::modification('.selector', [
'corners_tl_size' => '10',
'corners_tl_units' => 'px',
'corners_tr_size' => '20',
'corners_tr_units' => '%',
]);
$expected_css_1 = [
'all' => [
'.selector' => [
'border-top-left-radius:10px',
'border-top-right-radius:20%',
],
'.selector:after' => [
'border-top-left-radius:10px',
'border-top-right-radius:20%',
],
'.selector:before' => [
'border-top-left-radius:10px',
'border-top-right-radius:20%',
],
],
];
$this
->assertEquals($expected_css_1, $actual_1
->getCss());
$this
->assertEmpty($actual_1
->getLibraries());
$this
->assertEmpty($actual_1
->getSettings());
$this
->assertEmpty($actual_1
->getAttributes());
$this
->assertEmpty($actual_1
->getLinks());
// Bottom left and right corners.
$actual_2 = CornersModifier::modification('.selector', [
'corners_bl_size' => '10',
'corners_bl_units' => 'px',
'corners_br_size' => '20',
'corners_br_units' => '%',
]);
$expected_css_2 = [
'all' => [
'.selector' => [
'border-bottom-right-radius:20%',
'border-bottom-left-radius:10px',
],
'.selector:after' => [
'border-bottom-right-radius:20%',
'border-bottom-left-radius:10px',
],
'.selector:before' => [
'border-bottom-right-radius:20%',
'border-bottom-left-radius:10px',
],
],
];
$this
->assertEquals($expected_css_2, $actual_2
->getCss());
$this
->assertEmpty($actual_2
->getLibraries());
$this
->assertEmpty($actual_2
->getSettings());
$this
->assertEmpty($actual_2
->getAttributes());
$this
->assertEmpty($actual_2
->getLinks());
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CornersModifierTest:: |
public | function | @covers ::modification | |
PhpunitCompatibilityTrait:: |
public | function | Returns a mock object for the specified class using the available method. | |
PhpunitCompatibilityTrait:: |
public | function | Compatibility layer for PHPUnit 6 to support PHPUnit 4 code. | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | 1 |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | 1 |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. | |
UnitTestCase:: |
protected | function | 340 |