public void ShouldRetrieveArchiveFeedBasedOnStoreId()
        {
            IStoreId id = new StoreId<string>("archive.atom");

            IStore store = new FileStore(FileSystemConfiguration);
            IRepresentation representation = store.GetArchiveFeed(id);

            Output output = Output.For(representation);

            Assert.AreEqual("http://restbucks.com/product-catalogue/archive", GetSelfLinkValue(output.EntityBody));
        }