Exemplo n.º 1
0
 public CausalClusterIntegrationTestFixture()
 {
     try
     {
         Cluster = new CausalCluster();
     }
     catch (Exception)
     {
         Dispose();
         throw;
     }
 }
Exemplo n.º 2
0
        public CausalClusterIntegrationTestFixture()
        {
            var isClusterSupported = BoltkitHelper.IsClusterSupported();

            if (!isClusterSupported.Item1)
            {
                return;
            }

            try
            {
                Cluster = new CausalCluster();
            }
            catch (Exception)
            {
                Dispose();
                throw;
            }
        }