//JAVA TO C# CONVERTER TODO TASK: Most Java annotations will not have direct .NET equivalent attributes: //ORIGINAL LINE: @Before public void setup() throws Throwable //JAVA TO C# CONVERTER WARNING: Method 'throws' clauses are not available in C#: public virtual void Setup() { // setup a cluster with some data and entries in log files in fully functional and shutdown state ClusterManager.ManagedCluster cluster = ClusterRule.startCluster(); try { cluster.Await(allSeesAllAsAvailable()); OldMaster = cluster.Master; CreateSomeData(OldMaster); cluster.Sync(); OldSlave1 = cluster.AnySlave; OldSlave2 = cluster.GetAnySlave(OldSlave1); } finally { ClusterRule.shutdownCluster(); } AssertAllStoreConsistent(cluster); }