PhlytyTest\AppTest::testRoutingSetsListsOfRoutesByMethod PHP Method

testRoutingSetsListsOfRoutesByMethod() public method

    public function testRoutingSetsListsOfRoutesByMethod()
    {
        $foo = $this->app->get('/foo', function () {
        })->name('foo');
        $bar = $this->app->get('/bar', function () {
        });
        $barPost = $this->app->post('/bar', function () {
        })->name('bar-post');
        $barDelete = $this->app->delete('/bar', function () {
        });
        $r = new ReflectionObject($this->app);
        $routeMethod = $r->getMethod('route');
        $routeMethod->setAccessible(true);
        try {
            $routeMethod->invoke($this->app, $this->app->request(), 'GET');
            $this->fail('Successful routing not expected');
        } catch (\Exception $e) {
        }
        $routesByMethod = $r->getProperty('routesByMethod');
        $routesByMethod->setAccessible(true);
        $routesByMethod = $routesByMethod->getValue($this->app);
        $this->assertTrue(isset($routesByMethod['GET']));
        $this->assertEquals([$foo, $bar], array_values($routesByMethod['GET']));
        $this->assertTrue(isset($routesByMethod['POST']));
        $this->assertEquals([$barPost], array_values($routesByMethod['POST']));
        $this->assertTrue(isset($routesByMethod['DELETE']));
        $this->assertEquals([$barDelete], array_values($routesByMethod['DELETE']));
    }
AppTest