public static void ClassInit(TestContext context) { // テスト結果格納先削除 if (Directory.Exists(TestResultRootDir)) { Directory.Delete(TestResultRootDir, true); } DispatcherTestCommon.DeleteDbData(); // マスタテーブルデータを削除 DispatcherTestCommon.DeleteMasterTableData(); // DB設定 // マスタテーブルデータを作成する DispatcherTestCommon.MakeMasterTableData(); }
public static void ClassCleanup() { // マスタテーブルデータを削除 DispatcherTestCommon.DeleteMasterTableData(); }