Beispiel #1
0
        public void Next(BinaryTreeNodeWithParent <int> node, BinaryTreeNodeWithParent <int> expected)
        {
            var solution = new FindNextNode();

            var actual = solution.Next(node);

            Assert.Same(expected, actual);
        }
Beispiel #2
0
 public abstract void Search(INode start, INode end, FindNextNode heuristic);
Beispiel #3
0
 public override void Search(INode start, INode end, FindNextNode heuristic)
 {
     throw new System.NotImplementedException();
 }