(t *testing.T)
| 84 | } |
| 85 | |
| 86 | func TestLatinAttributesInXPath(t *testing.T) { |
| 87 | doc := createNode("", RootNode) |
| 88 | div := doc.createChildNode("div", ElementNode) |
| 89 | div.addAttribute("language", "english") |
| 90 | div.lines = 1 |
| 91 | test_xpath_elements(t, doc, `//div[@language='english']`, 1) |
| 92 | } |
| 93 | |
| 94 | func TestCyrillicAttributesInXPath(t *testing.T) { |
| 95 | doc := createNode("", RootNode) |
nothing calls this directly
no test coverage detected
searching dependent graphs…