public static ICacheService GetInMemoryCacheService(ICacheProviderConfig cfg)
 {
     return(new MemoryCacheService());
 }
        public void Get_Cache_Factory_Null_Config_Throws()
        {
            ICacheProviderConfig config = null;

            Assert.Throws <ArgumentNullException>(() => factory.GetCacheProviderFactory(config));
        }