public void TryIdentifyTenant_NoOperationContext()
        {
            var    strategy = new OperationContextTenantIdentificationStrategy();
            object tenantId;
            bool   success = strategy.TryIdentifyTenant(out tenantId);

            Assert.IsFalse(success, "The tenant should not be identified if there is no operation context.");
        }
        public void TryIdentifyTenant_NoOperationContext()
        {
            var    strategy = new OperationContextTenantIdentificationStrategy();
            object tenantId;
            bool   success = strategy.TryIdentifyTenant(out tenantId);

            Assert.False(success);
        }