File: CharCountBasedTest.php

package info (click to toggle)
php-nikic-fast-route 1.3.0-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 440 kB
  • sloc: php: 1,306; xml: 36; makefile: 13; sh: 7
file content (16 lines) | stat: -rw-r--r-- 327 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

namespace FastRoute\Dispatcher;

class CharCountBasedTest extends DispatcherTestCase
{
    protected function getDispatcherClass()
    {
        return 'FastRoute\\Dispatcher\\CharCountBased';
    }

    protected function getDataGeneratorClass()
    {
        return 'FastRoute\\DataGenerator\\CharCountBased';
    }
}