public void BSTValidator_ValidBST_ReturnTrue()
        {
            var root = new TreeNode {
                val = 5
            };

            root.left = new TreeNode {
                val = 4
            };
            root.right = new TreeNode {
                val = 7
            };
            var isValid = _binarySearchTreeValidator.IsValidBst(root);

            Assert.True(isValid);
        }