Exemplo n.º 1
0
        public void Should_pretty_print_whithout_errors()
        {
            var binaryTree = new BinaryTree <int> {
                8, 5, 12, 3, 7, 10, 15
            };

            binaryTree.PrettyPrint();
        }