PHPUnit\Runner\CleverAndSmart\Unit\Storage\Sqlite3StorageTest::getTypes PHP Method

getTypes() public static method

public static getTypes ( )
    public static function getTypes()
    {
        $class = new ReflectionClass('PHPUnit\\Runner\\CleverAndSmart\\Storage\\StorageInterface');
        $types = array();
        foreach ($class->getConstants() as $name => $value) {
            $types[] = array($value, $name);
        }
        return $types;
    }