Exemple #1
0
            public static void ThisTestClassInitialize(TestContext context)
            {
                // quieting intermittent code analysis warning
                TestHelp.DoNothing(context);

                target = new NonRecursiveLock();
            }
Exemple #2
0
 public static void ThisTestClassCleanup()
 {
     if (target != null)
     {
         target.Dispose();
         target = null;
     }
 }