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 18
18
import com .sun .net .httpserver .HttpExchange ;
19
19
import com .sun .net .httpserver .HttpHandler ;
20
20
import com .sun .net .httpserver .HttpServer ;
21
+ import io .github .nettyplus .leakdetector .junit .NettyLeakDetectorExtension ;
21
22
import io .netty .handler .codec .http .HttpHeaders ;
22
23
import java .io .IOException ;
23
24
import java .io .OutputStream ;
33
34
import org .junit .jupiter .api .BeforeAll ;
34
35
import org .junit .jupiter .api .Test ;
35
36
import org .junit .jupiter .api .Timeout ;
37
+ import org .junit .jupiter .api .extension .ExtendWith ;
36
38
import org .slf4j .Logger ;
37
39
import org .slf4j .LoggerFactory ;
38
40
39
41
import static org .junit .jupiter .api .Assertions .assertEquals ;
40
42
41
43
44
+ @ ExtendWith (NettyLeakDetectorExtension .class )
42
45
public class LargeResponseTest {
43
46
private static Logger LOG = LoggerFactory .getLogger (LargeResponseTest .class );
44
47
private static final int textSize = 200_000 ;
You can’t perform that action at this time.
0 commit comments