2

actix-web 文档中,有两个关于如何TestServer使用工厂函数构建 a 的示例:

use actix_web::{http, test, App, HttpRequest, HttpResponse};
// ...

fn main() {
    let mut srv = test::TestServer::with_factory(create_app);
    // ...
}

或应用程序状态

fn test() {
    let srv = TestServer::build_with_state(|| {
    // ...
    });

    // run tests
}

我想建立一个TestServer状态使用工厂功能,但到目前为止还没有成功。

如何实现?

4

0 回答 0