class TipPluginBaseTest
Same name and namespace in other branches
- 10 core/modules/tour/tests/src/Unit/TipPluginBaseTest.php \Drupal\Tests\tour\Unit\TipPluginBaseTest
@coversDefaultClass \Drupal\tour\TipPluginBase
@group tour
Hierarchy
- class \Drupal\Tests\UnitTestCase uses \Drupal\Tests\Traits\PhpUnitWarnings, \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait extends \PHPUnit\Framework\TestCase
- class \Drupal\Tests\tour\Unit\TipPluginBaseTest extends \Drupal\Tests\UnitTestCase
Expanded class hierarchy of TipPluginBaseTest
File
-
core/
modules/ tour/ tests/ src/ Unit/ TipPluginBaseTest.php, line 13
Namespace
Drupal\Tests\tour\UnitView source
class TipPluginBaseTest extends UnitTestCase {
/**
* @covers ::getLocation
*/
public function testGetLocationAssertion() {
$base_plugin = $this->getMockForAbstractClass(TipPluginBase::class, [], '', FALSE);
$base_plugin->set('position', 'right');
$this->assertSame('right', $base_plugin->getLocation());
$base_plugin->set('position', 'not_valid');
$this->expectException(\AssertionError::class);
$this->expectExceptionMessage('not_valid is not a valid Tour Tip position value');
$base_plugin->getLocation();
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.