Example #1
0
 private void CheckDtcEnabled(TestCaseResult result)
 {
     if (!TestSettings.GetBoolean("DTC_TEST", false))
     {
         result.Skip("DTC_TEST is not set -- DTC tests are not enabled.");
     }
 }
Example #2
0
        private void CheckTransactionCapable(TestCaseResult result)
        {
            String host = TestSettings.GetString("HOST");

            if (host != null && host.StartsWith(":in-process:"))
            {
                result.Skip("Transaction tests are disabled for in-process client.");
            }
        }