Created
May 24, 2016 23:10
-
-
Save alexlehm/ed63f52a011cc7bfb5549f592413e42d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import org.junit.Test; | |
import static org.junit.Assert.*; | |
import io.vertx.core.http.CaseInsensitiveHeaders; | |
/** | |
* @author <a href="http://oss.lehmann.cx/">Alexander Lehmann</a> | |
* | |
*/ | |
public class CaseInsensitiveHeadersTest { | |
@Test | |
public void test() { | |
CaseInsensitiveHeaders headers1 = new CaseInsensitiveHeaders(); | |
CaseInsensitiveHeaders headers2 = new CaseInsensitiveHeaders(); | |
headers1.add("a", "b"); | |
headers2.add("a", "b"); | |
assertEquals(headers1, headers2); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment