@Before
  public void setUp() throws Exception {

    log.info("setUp");
    // createSequence();
    // createTable();

    log.info("buildtestPersons");
    testPerson = new Person();
    testPerson.setLastName("Windsor");
    testPerson.setFirstName("William");
    testPerson.setAddress("Kensington Palace");

    testPerson2 = new Person();
    testPerson2.setLastName("Windor");
    testPerson2.setFirstName("Kate");
    testPerson2.setAddress("Kensington Palace");
  }