public void QueryErrorDetectionStrategyTestDataServiceQueryException()
        {
            var exception = new System.Data.Services.Client.DataServiceQueryException();

            bool actual = new TestQueryErrorDetectionStrategy().CheckIsTransientTest(exception);

            Assert.IsFalse(actual);
        }
        public void QueryErrorDetectionStrategyTestDataServiceQueryException()
        {
            var exception = new System.Data.Services.Client.DataServiceQueryException();

            bool actual = new TestQueryErrorDetectionStrategy().CheckIsTransientTest(exception);

            Assert.IsFalse(actual);
        }
        public void QueryErrorDetectionStrategyTestGeneralException()
        {
            bool actual = new TestQueryErrorDetectionStrategy().CheckIsTransientTest(new Exception());

            Assert.IsFalse(actual);
        }
        public void QueryErrorDetectionStrategyTestGeneralException()
        {
            bool actual = new TestQueryErrorDetectionStrategy().CheckIsTransientTest(new Exception());

            Assert.IsFalse(actual);
        }