Package io.vertx.core.http

Examples of io.vertx.core.http.CaseInsensitiveHeaders.clear()


  @Test
  public void testClearTest1()
      throws Exception {
    MultiMap mmap = new CaseInsensitiveHeaders();

    MultiMap result = mmap.clear();

    assertNotNull(result);
    assertTrue(result.isEmpty());
    assertEquals(0, result.size());
    assertEquals("", result.toString());
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.