File tree 1 file changed +3
-0
lines changed
client/src/test/java/org/asynchttpclient
1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change 22
22
import com .sun .net .httpserver .HttpExchange ;
23
23
import com .sun .net .httpserver .HttpHandler ;
24
24
import com .sun .net .httpserver .HttpServer ;
25
+ import io .github .nettyplus .leakdetector .junit .NettyLeakDetectorExtension ;
25
26
import io .netty .handler .codec .compression .Brotli ;
26
27
import org .junit .jupiter .api .AfterAll ;
27
28
import org .junit .jupiter .api .BeforeAll ;
35
36
import java .util .List ;
36
37
import java .util .stream .Collectors ;
37
38
import java .util .zip .GZIPOutputStream ;
39
+ import org .junit .jupiter .api .extension .ExtendWith ;
38
40
39
41
import static org .junit .jupiter .api .Assertions .assertEquals ;
40
42
43
+ @ ExtendWith (NettyLeakDetectorExtension .class )
41
44
public class AutomaticDecompressionTest {
42
45
private static final String UNCOMPRESSED_PAYLOAD = "a" .repeat (500 );
43
46
You can’t perform that action at this time.
0 commit comments