public void AddCommandProcessor(DependencyLifetime lifetime) { _dependencies.AddCommandProcessor <TestsModels.Emitting.Boos.Create.Processor>(lifetime); var processorType = typeof(TestsModels.Emitting.Boos.Create.Processor); _dependencies.Contains(processorType).Should().BeTrue(); _dependencies.GetLifetime(processorType).Should().Be(lifetime); }
public void AddCommandProcessor(DependencyLifetime lifetime) { _dependencies.AddCommandProcessor <Processor>(lifetime); var processorType = typeof(Processor); _dependencies.Contains(processorType).Should().BeTrue(); _dependencies.GetLifetime(processorType).Should().Be(lifetime); }