You are here

public function ContextDefinitionTest::testGetConstraint in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Core/Plugin/Context/ContextDefinitionTest.php \Drupal\Tests\Core\Plugin\Context\ContextDefinitionTest::testGetConstraint()

@dataProvider providerGetConstraint @covers ::getConstraint @uses \Drupal

File

core/tests/Drupal/Tests/Core/Plugin/Context/ContextDefinitionTest.php, line 195
Contains \Drupal\Tests\Core\Plugin\Context\ContextDefinitionTest.

Class

ContextDefinitionTest
Tests the ContextDefinition class.

Namespace

Drupal\Tests\Core\Plugin\Context

Code

public function testGetConstraint($expected, $constraint_array, $constraint) {
  $mock_context_definition = $this
    ->getMockBuilder('Drupal\\Core\\Plugin\\Context\\ContextDefinition')
    ->disableOriginalConstructor()
    ->setMethods(array(
    'getConstraints',
  ))
    ->getMock();
  $mock_context_definition
    ->expects($this
    ->once())
    ->method('getConstraints')
    ->willReturn($constraint_array);
  $this
    ->assertEquals($expected, $mock_context_definition
    ->getConstraint($constraint));
}