public void FindMax() { for (var i = 0; i < 5; i++) { _avlTree.Insert(i); } _avlTree.GetMaxOrThrow().Should().Be(4); }