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