(t *testing.T)
| 21 | } |
| 22 | |
| 23 | func Test_func_name(t *testing.T) { |
| 24 | test_xpath_eval(t, html_example, `name(//html/@lang)`, "lang") |
| 25 | test_xpath_eval(t, html_example, `name(html/head/title)`, "title") |
| 26 | test_xpath_count(t, html_example, `//*[name() = "li"]`, 3) |
| 27 | } |
| 28 | |
| 29 | func Test_func_not(t *testing.T) { |
| 30 | //test_xpath_eval(t, empty_example, `not(0)`, true) |
nothing calls this directly
no test coverage detected
searching dependent graphs…