function BreakpointTest::testGetWeight

Same name and namespace in other branches
  1. 9 core/modules/breakpoint/tests/src/Unit/BreakpointTest.php \Drupal\Tests\breakpoint\Unit\BreakpointTest::testGetWeight()
  2. 8.9.x core/modules/breakpoint/tests/src/Unit/BreakpointTest.php \Drupal\Tests\breakpoint\Unit\BreakpointTest::testGetWeight()
  3. 10 core/modules/breakpoint/tests/src/Unit/BreakpointTest.php \Drupal\Tests\breakpoint\Unit\BreakpointTest::testGetWeight()

@covers ::getWeight

File

core/modules/breakpoint/tests/src/Unit/BreakpointTest.php, line 76

Class

BreakpointTest
@coversDefaultClass <a href="/api/drupal/core%21modules%21breakpoint%21src%21Breakpoint.php/class/Breakpoint/11.x" title="Default object used for breakpoint plugins." class="local">\Drupal\breakpoint\Breakpoint</a> @group Breakpoint

Namespace

Drupal\Tests\breakpoint\Unit

Code

public function testGetWeight() : void {
    $this->pluginDefinition['weight'] = '4';
    $this->setupBreakpoint();
    // Assert that the type returned in an integer.
    $this->assertSame(4, $this->breakpoint
        ->getWeight());
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.