public function test_notInsertedElementIsNotPresent()
 {
     $tree = new BinaryTree();
     $element = new types\NumericContainer(1);
     $this->assertFalse($tree->contains($element));
 }