14 lines
312 B
PHP
14 lines
312 B
PHP
|
<?php
|
||
|
|
||
|
namespace FastRoute\Dispatcher;
|
||
|
|
||
|
class GroupPosBasedTest extends DispatcherTest {
|
||
|
protected function getDispatcherClass() {
|
||
|
return 'FastRoute\\Dispatcher\\GroupPosBased';
|
||
|
}
|
||
|
|
||
|
protected function getDataGeneratorClass() {
|
||
|
return 'FastRoute\\DataGenerator\\GroupPosBased';
|
||
|
}
|
||
|
}
|