public void ThenAnExceptionShouldBeThrown()
 {
     Store = new FileSystemBackingStore(ConfigAttributes);
     Assert.Fail();
 }
        public override void Arrange()
        {
            base.Arrange();

            Directory.CreateDirectory("cache");
            CacheManager = CacheFactory.GetCacheManager("Cache Manager");

            ConfigAttributes = new NameValueCollection { { "path", "cache" } };
            Store = new FileSystemBackingStore(ConfigAttributes);
        }