Package br.com.six2six.fixturefactory.model

Examples of br.com.six2six.fixturefactory.model.Address


    assertEquals(expectedStringBirthday, client.getBirthdayAsString());
  }
 
  @Test
  public void fixtureAddress() {
    Address address = Fixture.from(Address.class).gimme("valid-augusta");
    assertNotNull("Address should not be null", address.getId());
    assertEquals("Augusta Street", address.getStreet());
  }
View Full Code Here

TOP

Related Classes of br.com.six2six.fixturefactory.model.Address

Copyright © 2018 www.massapicom. 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.