xUnit
xUnit copied to clipboard
给xunit提供web入口调度器
能够按照url,请求方式等http参数映射到unit,或某些领域类的方法上,参考webflux: .GET("/person/{id}", RequestPredicates.accept(MediaType.APPLICATION_JSON), personHandler::getPerson) .GET("/person", RequestPredicates.accept(MediaType.APPLICATION_JSON), personHandler::listPeople) .POST("/person", personHandler::createPerson) .build();