Examples of liquibaseChangeLog()


Examples of ch.inftec.ju.testing.db.DbSchemaUtil.liquibaseChangeLog()

  @Test
  public void canSet_changeLogParameters() {
    DbSchemaUtil su = new DbSchemaUtil(this.em);

    su.clearSchema();
    su.liquibaseChangeLog()
        .changeLogResource("ch/inftec/ju/dbutil/test/DbSchemaUtilTest_liquibase_canUseChangeLogParameters.xml")
        .parameter("myTableName", "TestingEntity_LB")
        .parameter("myName", "FooBar")
        .run();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.