Package br.com.six2six.fixturefactory.model

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


    FixtureFactoryLoader.loadTemplates("br.com.six2six.template");
  }

  @Test
  public void fixtureInvoice() {
    Invoice invoice = Fixture.from(Invoice.class).gimme("valid");
    assertNotNull("Invoice should not be null", invoice);
    assertEquals("Invoice ammout should have precision of 2", 2, invoice.getAmmount().precision());
  }
View Full Code Here

TOP

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

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.