public void TestTearDown()
 {
     if (_testCluster != null)
     {
         _testCluster.Remove();
     }
 }
Beispiel #2
0
 public void RemoveTestCluster(ITestCluster testCluster)
 {
     Trace.TraceWarning("Removing test cluster with initial contact point: " + testCluster.InitialContactPoint + " and name: " + testCluster.Name);
     // remove Cassandra instance
     testCluster.Remove();
     // remove from list
     _testClusters.Remove(testCluster);
 }
Beispiel #3
0
 public void RemoveAllTestClusters()
 {
     for (int j = _testClusters.Count - 1; j >= 0; j--)
     {
         ITestCluster existingTestCluster = _testClusters[j];
         if (!existingTestCluster.IsRemoved)
         {
             Trace.TraceWarning("Removing cluster: " + existingTestCluster.Name + " initial contact point: " +
                                existingTestCluster.InitialContactPoint);
             existingTestCluster.Remove();
         }
         // Remove from Test Cluster Manager list
         _testClusters[j].Remove();
     }
 }
Beispiel #4
0
 public void TestTearDown()
 {
     _testCluster.Remove();
     _testCluster = null;
 }
 public void TestFixtureTearDown()
 {
     _testClusterForAuthTesting.Remove();
 }
Beispiel #6
0
 public void OneTimeTearDown()
 {
     _testCluster.Remove();
 }
 public void TearDown()
 {
     _testCluster.Remove();
 }
 public void RemoveTestCluster(ITestCluster testCluster)
 {
     Trace.TraceWarning("Removing test cluster with initial contact point: " + testCluster.InitialContactPoint + " and name: " + testCluster.Name);
     // remove Cassandra instance 
     testCluster.Remove();
     // remove from list
     _testClusters.Remove(testCluster);
 }