コード例 #1
0
 public static void Index(IndexActionArgs args)
 {
     try
     {
         for (var i = 0; i < 100; i++)
         {
             BaseAction.Setup();
             BaseAction.TearDown();
         }
     }
     catch (Exception)
     {
         BaseAction.TearDown();
         throw;
     }
 }
コード例 #2
0
ファイル: IndexAction.cs プロジェクト: Rustemt/NEST
 public static void Index(IndexActionArgs args)
 {
     try
     {
         for (var i = 0; i < 100; i++)
         {
             BaseAction.Setup();
             BaseAction.TearDown();
         }
     }
     catch (Exception)
     {
         BaseAction.TearDown();
         throw;
     }
 }
コード例 #3
0
ファイル: Program.cs プロジェクト: Rustemt/NEST
 public static void Index(IndexActionArgs args)
 {
     IndexAction.Index(args);
 }
コード例 #4
0
 public static void Index(IndexActionArgs args)
 {
     IndexAction.Index(args);
 }