Package de.olivergierke.whoops.customer

Examples of de.olivergierke.whoops.customer.Customer


  @Autowired CustomerService customerService;

  @Test
  public void createNewUser() {

    Customer customer = customerService.createCustomer("Dave", "Matthews");
    assertThat(customer.getCustomerNumber(), is(notNullValue()));
  }
View Full Code Here

TOP

Related Classes of de.olivergierke.whoops.customer.Customer

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.