public void InOrderEmpty() { BinaryTree <int> tree = new BinaryTree <int>(); Assert.Equal(new int[] { }, tree.InOrder()); }