Exemplo n.º 1
0
        public static void ClassInit(TestContext context)
        {
            // テスト結果格納先削除
            if (Directory.Exists(TestResultRootDir))
            {
                Directory.Delete(TestResultRootDir, true);
            }

            DispatcherTestCommon.DeleteDbData();

            // マスタテーブルデータを削除
            DispatcherTestCommon.DeleteMasterTableData();

            // DB設定
            // マスタテーブルデータを作成する
            DispatcherTestCommon.MakeMasterTableData();
        }
Exemplo n.º 2
0
 public static void ClassCleanup()
 {
     // マスタテーブルデータを削除
     DispatcherTestCommon.DeleteMasterTableData();
 }