public void Setup()
 {
     this.SubstituteFactory = Substitute.For <ISubstituteService>();
     this.SupportedTypes    = new List <Type> {
         typeof(Guid)
     };
     this.Target = new DependencyRetriever(this.SubstituteFactory, this.SupportedTypes);
 }
        public DependencyRetrieverTests()
        {
            _serviceEntryStoreMock = new Mock <IServiceEntryStore>();

            _dependencyRetriever = new DependencyRetriever(_serviceEntryStoreMock.Object);
        }