assertEquals(dirname(__DIR__).'/public', $app->publicPath()); } public function testControllerUris(): void { $app = new Application(dirname(__DIR__)); $this->assertEquals([ 'categories.posts' => 'CategoriesPostsController', 'posts' => 'PostsController', 'users.posts' => 'UsersPostsController' ], $app->controllerUris); } }