public void GetAllTest()
        {
            IStoreRepository    repository = new FileStoreRepository();
            IEnumerable <Store> stores     = repository.GetAll();

            Assert.NotEmpty(stores);
        }