Compares the actual and the expected value. @param actual evaluated result @param expected expected result @return result of check @throws QueryException query exception
(final Value actual, final Value expected)
| 118 | * @throws QueryException query exception |
| 119 | */ |
| 120 | protected static boolean eq(final Value actual, final Value expected) throws QueryException { |
| 121 | return new DeepEqual().equal(actual, expected); |
| 122 | } |
| 123 | |
| 124 | /** |
| 125 | * Creates a container for the specified node values. |