示例#1
0
        public void ClientFactory_HasDefaultValue_ThatReturns()
        {
            BackgroundJob.ClientFactory = null;
            JobStorage.Current          = new Mock <JobStorage>().Object;

            var client = BackgroundJob.ClientFactory();

            Assert.NotNull(client);
        }