コード例 #1
0
        public void merging_adds_a_chain_for_all_new_message_type()
        {
            theGraph.Add(concreteCall);

            var other = new HandlerGraph();

            other.Add(concreteCall4);

            theGraph.Import(other);

            theGraph.Select(x => x.InputType())
            .ShouldHaveTheSameElementsAs(typeof(Input), typeof(DifferentInput));
        }