예제 #1
0
        public void NodeChecker_WhenGettingNodeWithText_ShouldReturnNode()
        {
            var foundNode = _nodeFinder.FindNode(_nodes, With.Text("Buss"));

            Assert.IsNotNull(foundNode);
            Assert.AreEqual("Buss", foundNode.Text);
        }