19 lines
322 B
PHP
19 lines
322 B
PHP
<?php
|
|
|
|
namespace Behat\Mink\Tests\Selector;
|
|
|
|
use Behat\Mink\Selector\PartialNamedSelector;
|
|
|
|
class PartialNamedSelectorTest extends NamedSelectorTest
|
|
{
|
|
protected function getSelector()
|
|
{
|
|
return new PartialNamedSelector();
|
|
}
|
|
|
|
protected function allowPartialMatch()
|
|
{
|
|
return true;
|
|
}
|
|
}
|