(t *testing.T)
| 151 | } |
| 152 | |
| 153 | func TestBUG_104(t *testing.T) { |
| 154 | // BUG https://github.com/antchfx/xpath/issues/104 |
| 155 | test_xpath_count(t, book_example, `//author[1]`, 4) |
| 156 | test_xpath_values(t, book_example, `//author[1]/text()`, "Giada De Laurentiis", "J K. Rowling", "James McGovern", "Erik T. Ray") |
| 157 | } |
| 158 | |
| 159 | func TestNonEnglishPredicateExpression(t *testing.T) { |
| 160 | // https://github.com/antchfx/xpath/issues/106 |
nothing calls this directly
no test coverage detected
searching dependent graphs…