(t *testing.T)
| 83 | } |
| 84 | |
| 85 | func Test_func_local_name(t *testing.T) { |
| 86 | test_xpath_eval(t, book_example, `local-name(bookstore)`, "bookstore") |
| 87 | test_xpath_eval(t, mybook_example, `local-name(//mybook:book)`, "book") |
| 88 | } |
| 89 | |
| 90 | func Test_func_starts_with(t *testing.T) { |
| 91 | test_xpath_eval(t, employee_example, `starts-with("tattoo", "tat")`, true) |
nothing calls this directly
no test coverage detected
searching dependent graphs…