0x1306e6d / tollgate

An API gateway for your microservice.
MIT License
6 stars 1 forks source link

Allow easily testable #84

Closed 0x1306e6d closed 3 years ago

0x1306e6d commented 3 years ago

Like ServerExtension in the Armeria, I need a way to test easily. Additionally, I want testing tollgate support a method scope as follows:

@Test
void test() {
    try (Tollgate tollgate = withTestTollgate(builder -> /* configure Tollgate */)) {
        ...
    }
}