Package org.jboss.arquillian.persistence.core.event

Examples of org.jboss.arquillian.persistence.core.event.ApplyScriptsBeforeTest


   private void executeScriptsBeforeTest(BeforePersistenceTest beforePersistenceTest)
   {
      final PersistenceConfiguration persistenceConfiguration = configuration.get();
      String[] scriptsToExecuteBeforeTest = persistenceConfiguration.getScriptsToExecuteBeforeTest();
      final List<SqlScriptResourceDescriptor> scripts = processScripts(scriptsToExecuteBeforeTest);
      applyScriptsBeforeTestEvent.fire(new ApplyScriptsBeforeTest(beforePersistenceTest, scripts));
   }
View Full Code Here


   private void executeScriptsBeforeTest(BeforePersistenceTest beforePersistenceTest)
   {
      final ScriptingConfiguration configuration = scriptingConfigurationInstance.get();
      String[] scriptsToExecuteBeforeTest = configuration.getScriptsToExecuteBeforeTest();
      final List<SqlScriptResourceDescriptor> scripts = processScripts(scriptsToExecuteBeforeTest);
      applyScriptsBeforeTestEvent.fire(new ApplyScriptsBeforeTest(beforePersistenceTest, scripts));
   }
View Full Code Here

TOP

Related Classes of org.jboss.arquillian.persistence.core.event.ApplyScriptsBeforeTest

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.