View Javadoc
1   package com.github.davidmoten.aws.lw.client;
2   
3   import java.io.IOException;
4   import java.util.Collections;
5   
6   import org.junit.Test;
7   
8   import com.github.davidmoten.aws.lw.client.internal.util.Util;
9   
10  public class ResponseInputStreamTest {
11      
12      @Test
13      public void test() throws IOException {
14          new ResponseInputStream(() ->{}, 200, Collections.emptyMap(), Util.emptyInputStream()).close();
15      }
16  
17  }