Package net.sf.uadetector.internal.data.domain.BrowserType

Examples of net.sf.uadetector.internal.data.domain.BrowserType.Builder.build()


  @Test
  public void testSettersAndGetters() {
    Builder b = new BrowserType.Builder();
    b.setId(1);
    b.setName("Test");
    BrowserType i = b.build();
    assertThat(i.getId()).isEqualTo(1);
    assertThat(i.getName()).isEqualTo("Test");
  }

}
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.