public void ShouldRetrieveInterfaces() { var retriever = new InstanceRetriever<IPath>(); var paths = retriever.RetrieveInstances(); Assert.IsNotNull(paths); Assert.IsTrue(paths.Any()); }
private void PopulateShop() { var items = new InstanceRetriever<IBuyableEquipment>().RetrieveInstances(); _equipment = items.ToList(); }