ResolverTests TryResolveWithCustomParameter Method Delta Engine Documentation

Namespace: DeltaEngine.Platforms.Tests
Assembly: DeltaEngine.Platforms.Tests (in DeltaEngine.Platforms.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public void TryResolveWithCustomParameter()
Examples

[Test]
public void TryResolveWithCustomParameter()
{
    resolver.Register(typeof(DummyClassWithString));
    Assert.DoesNotThrow(() => resolver.Resolve(typeof(DummyClassWithString), "Huhu"));
}
See Also