You are here

ExactNamedSelectorTest.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 vendor/behat/mink/tests/Selector/ExactNamedSelectorTest.php

File

vendor/behat/mink/tests/Selector/ExactNamedSelectorTest.php
View source
<?php

namespace Behat\Mink\Tests\Selector;

use Behat\Mink\Selector\ExactNamedSelector;
class ExactNamedSelectorTest extends NamedSelectorTest {
  protected function getSelector() {
    return new ExactNamedSelector();
  }
  protected function allowPartialMatch() {
    return false;
  }

}

Classes