You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
315 B

8 years ago
  1. <?php
  2. namespace FastRoute\Dispatcher;
  3. class CharCountBasedTest extends DispatcherTest {
  4. protected function getDispatcherClass() {
  5. return 'FastRoute\\Dispatcher\\CharCountBased';
  6. }
  7. protected function getDataGeneratorClass() {
  8. return 'FastRoute\\DataGenerator\\CharCountBased';
  9. }
  10. }