Examples of storeToDatabase()


Examples of com.asakusafw.testtools.TestUtils.storeToDatabase()

    public void executeTest01() throws Exception {
        // テストデータを指定
        File testDataDir = new File("src/test/data/dbCleaner/executeTest01");
        TestUtils util = new TestUtils(testDataDir);
        // テストデータをセット
        util.storeToDatabase(false);
        createTempTable1();
        createTempTable2();

        // 処理の実行
        String[] args = new String[]{targetName};
View Full Code Here

Examples of com.asakusafw.testtools.TestUtils.storeToDatabase()

    public void selectJobFlowSidTest01() throws Exception {
        // テストデータを指定
        File testDataDir = new File("src/test/data/common/DBAccessUtilTest/selectJobFlowSidTest01");
        TestUtils util = new TestUtils(testDataDir);
        // テストデータをセット
        util.storeToDatabase(false);

        // テスト対象クラス実行
        String jobFlowSid = DBAccessUtil.selectJobFlowSid("JOB_FLOW01-002");

        // 実行結果の検証
View Full Code Here

Examples of com.asakusafw.testtools.TestUtils.storeToDatabase()

    public void selectJobFlowSidTest02() throws Exception {
        // テストデータを指定
        File testDataDir = new File("src/test/data/common/DBAccessUtilTest/selectJobFlowSidTest01");
        TestUtils util = new TestUtils(testDataDir);
        // テストデータをセット
        util.storeToDatabase(false);

        // テスト対象クラス実行
        String jobFlowSid = DBAccessUtil.selectJobFlowSid("JOB_FLOW01-999");

        // 実行結果の検証
View Full Code Here

Examples of com.asakusafw.testtools.TestUtils.storeToDatabase()

    public void selectJobFlowSidTest03() throws Exception {
        // テストデータを指定
        File testDataDir = new File("src/test/data/common/DBAccessUtilTest/selectJobFlowSidTest01");
        TestUtils util = new TestUtils(testDataDir);
        // テストデータをセット
        util.storeToDatabase(false);

        // テスト対象クラス実行
        String jobFlowSid = DBAccessUtil.selectJobFlowSid("JOB_FLOW01-003");

        // 実行結果の検証
View Full Code Here

Examples of com.asakusafw.testtools.TestUtils.storeToDatabase()

    public void getExportTempTable01() throws Exception {
        // テストデータを指定
        File testDataDir = new File("src/test/data/common/DBAccessUtilTest/getExportTempTable01");
        TestUtils util = new TestUtils(testDataDir);
        // テストデータをセット
        util.storeToDatabase(false);

        // テスト対象クラス実行
        List<ExportTempTableBean> bean = DBAccessUtil.getExportTempTable("99");

        // 実行結果の検証
View Full Code Here

Examples of com.asakusafw.testtools.TestUtils.storeToDatabase()

    public void getExportTempTable02() throws Exception {
        // テストデータを指定
        File testDataDir = new File("src/test/data/common/DBAccessUtilTest/getExportTempTable01");
        TestUtils util = new TestUtils(testDataDir);
        // テストデータをセット
        util.storeToDatabase(false);

        // テスト対象クラス実行
        List<ExportTempTableBean> bean = DBAccessUtil.getExportTempTable("999");

        // 実行結果の検証
View Full Code Here

Examples of com.asakusafw.testtools.TestUtils.storeToDatabase()

    public void selectRunningJobFlowTest01() throws Exception {
        // テストデータを指定
        File testDataDir = new File("src/test/data/common/DBAccessUtilTest/selectJobFlowSidTest01");
        TestUtils util = new TestUtils(testDataDir);
        // テストデータをセット
        util.storeToDatabase(false);

        // テスト対象クラス実行
        List<ExporterBean> bean = DBAccessUtil.selectRunningJobFlow("JOB_FLOW01-002");

        // 実行結果の検証
View Full Code Here

Examples of com.asakusafw.testtools.TestUtils.storeToDatabase()

    public void selectRunningJobFlowTest02() throws Exception {
        // テストデータを指定
        File testDataDir = new File("src/test/data/common/DBAccessUtilTest/selectJobFlowSidTest01");
        TestUtils util = new TestUtils(testDataDir);
        // テストデータをセット
        util.storeToDatabase(false);

        // テスト対象クラス実行
        List<ExporterBean> bean = DBAccessUtil.selectRunningJobFlow("JOB_FLOW01-999");

        // 実行結果の検証
View Full Code Here

Examples of com.asakusafw.testtools.TestUtils.storeToDatabase()

    public void selectRunningJobFlowTest03() throws Exception {
        // テストデータを指定
        File testDataDir = new File("src/test/data/common/DBAccessUtilTest/selectJobFlowSidTest01");
        TestUtils util = new TestUtils(testDataDir);
        // テストデータをセット
        util.storeToDatabase(false);

        // テスト対象クラス実行
        List<ExporterBean> bean = DBAccessUtil.selectRunningJobFlow(null);

        // 実行結果の検証
View Full Code Here

Examples of com.asakusafw.testtools.TestUtils.storeToDatabase()

    public void createImportFileTest04() throws Exception {
        // テストデータを指定
        File testDataDir = new File("src/test/data/importer/ImportFileCreateTest/createImportFileTest04");
        TestUtils util = new TestUtils(testDataDir);
        // テストデータをセット
        util.storeToDatabase(false);

//        // テストデータの指定
//        String pattern = "patternC03";

        // ImportBeanを生成
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.