(t *testing.T)
| 58 | } |
| 59 | |
| 60 | func Test_func_count(t *testing.T) { |
| 61 | test_xpath_eval(t, book_example, `count(//book)`, float64(4)) |
| 62 | test_xpath_eval(t, book_example, `count(//book[3]/author)`, float64(5)) |
| 63 | } |
| 64 | |
| 65 | func Test_func_ends_with(t *testing.T) { |
| 66 | test_xpath_eval(t, empty_example, `ends-with("tattoo", "tattoo")`, true) |
nothing calls this directly
no test coverage detected
searching dependent graphs…