示例#1
0
 /**
  * @expectedException \Novuso\System\Exception\UnderflowException
  */
 public function test_that_max_throws_exception_when_empty()
 {
     $tree = new RedBlackSearchTree(new ComparableComparator());
     $tree->max();
 }
示例#2
0
 /**
  * {@inheritdoc}
  */
 public function max()
 {
     return $this->tree->max();
 }