Create a public class BinaryTreeCounter that provides a single class method
named countIncreasing that accepts a single BinaryTree<Integer> and counts
the number of nodes in the tree that have at least one child node and whose child
nodes all have values strictly greater than their parent's value.
If the passed tree is null, return 0.
For reference, cs125.trees.BinaryTree has the following public properties:
You're challenge is to write tests for this problem described above.
Stuck? You may find these lessons helpful: