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