@Override
  public void test() throws Exception {
    db = Db.open("jdbc:h2:mem:", "sa", "sa");
    db.insertAll(Product.getList());
    db.insertAll(Customer.getList());
    db.insertAll(Order.getList());

    testSimpleUpdate();
    testSimpleUpdateWithCombinedPrimaryKey();
    testSimpleMerge();
    testSimpleMergeWithCombinedPrimaryKey();
    testSetColumns();

    db.close();
  }