mirror of https://github.com/AMT-Cheif/Stylet.git
Throw a better exception than an NRE if they forget to call builder.Bind(..).To(..)
Fixes #114
This commit is contained in:
parent
bc068f8b27
commit
9f7b596a5e
|
@ -12,7 +12,7 @@ namespace StyletIoC.Internal.Builders
|
|||
private readonly Func<IEnumerable<Assembly>, string, IEnumerable<Assembly>> getAssemblies;
|
||||
public List<BuilderTypeKey> ServiceTypes { get; private set; }
|
||||
private BuilderBindingBase builderBinding;
|
||||
public bool IsWeak { get { return this.builderBinding.IsWeak; } }
|
||||
public bool IsWeak { get { return this.builderBinding?.IsWeak ?? false; } }
|
||||
|
||||
public BuilderBindTo(Type serviceType, Func<IEnumerable<Assembly>, string, IEnumerable<Assembly>> getAssemblies)
|
||||
{
|
||||
|
@ -91,6 +91,9 @@ namespace StyletIoC.Internal.Builders
|
|||
|
||||
internal void Build(Container container)
|
||||
{
|
||||
if (this.builderBinding == null)
|
||||
throw new StyletIoCRegistrationException(String.Format("Service type {0} is not bound to anything", this.ServiceTypes[0].Type.GetDescription()));
|
||||
|
||||
this.builderBinding.Build(container);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -86,11 +86,19 @@ namespace StyletUnitTests.StyletIoC
|
|||
}
|
||||
|
||||
[Test]
|
||||
public void AllowsInstanceTobeInterfaceType()
|
||||
public void AllowsInstanceToBeInterfaceType()
|
||||
{
|
||||
var builder = new StyletIoCBuilder();
|
||||
I1 i1 = new C1();
|
||||
Assert.DoesNotThrow(() => builder.Bind<I1>().ToInstance(i1));
|
||||
}
|
||||
|
||||
[Test]
|
||||
public void ThrowsIfMissingBuilderBinding()
|
||||
{
|
||||
var builder = new StyletIoCBuilder();
|
||||
builder.Bind<C1>();
|
||||
Assert.Throws<StyletIoCRegistrationException>(() => builder.BuildContainer());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue