public void GenericTryResolveShouldReturn() { IServiceLocator sl = new MockServiceLocator(() => new ServiceLocatorExtensionsFixture()); ServiceLocatorExtensionsFixture value = sl.TryResolve<ServiceLocatorExtensionsFixture>(); Assert.IsNotNull(value); }
public void ShouldResolveFoundtypes() { IServiceLocator sl = new MockServiceLocator(() => new ServiceLocatorExtensionsFixture()); object value = sl.TryResolve(typeof(ServiceLocatorExtensionsFixture)); Assert.IsNotNull(value); }
public void TryResolveShouldReturnNullIfNotFound() { IServiceLocator sl = new MockServiceLocator(() => null); object value = sl.TryResolve(typeof(ServiceLocatorExtensionsFixture)); Assert.IsNull(value); }
public void GenericTryResolveShouldReturn() { IServiceLocator sl = new MockServiceLocator(() => new ServiceLocatorExtensionsFixture()); ServiceLocatorExtensionsFixture value = sl.TryResolve <ServiceLocatorExtensionsFixture>(); Assert.IsNotNull(value); }