コード例 #1
0
        public void NodesWithTableArgumentsAreEqual()
        {
            NodeStep step1 = new NodeStep("my step");
            step1.Rows.Add(new string[] {
                "| a | b | c |"
            });

            NodeStep step2 = new NodeStep("my step");
            step2.Rows.Add(new string[] {
                "| a | b | c |"
            });

            Assert.IsTrue(step1.Equals(step2));
        }