This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class KunderaExport { | |
public static void main(String... args) { | |
generateDdl(); | |
} | |
private void generateDdl() throws Exception { | |
getLog().info("Processing persistence unit: " + persistenceUnitName); | |
// instantiate app metadata |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library postgresql_test; | |
import 'dart:async'; | |
import 'package:unittest/unittest.dart'; | |
import 'package:dart_config/default_server.dart' as cfg; | |
// load from file | |
Future<String> load({String user, String pwd, String host, int port, String db}){ | |
var completer = new Completer<String>(); | |
cfg.loadConfig('test/config.yaml').then((Map config) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Testing environment configuration. | |
*/ | |
public final class SetupTestSuite { | |
public final static String PU_NAME = "qos-test"; | |
public final static int SERVER_PORT = 8181; | |
private final String JDBC_POOL = "MyPool"; | |
private final String JDBC_RESOURCE = "jdbc/memory/qos"; |
NewerOlder