(t *testing.T)
| 92 | } |
| 93 | |
| 94 | func TestCyrillicAttributesInXPath(t *testing.T) { |
| 95 | doc := createNode("", RootNode) |
| 96 | div := doc.createChildNode("div", ElementNode) |
| 97 | div.addAttribute("язык", "русский") |
| 98 | div.lines = 1 |
| 99 | test_xpath_elements(t, doc, `//div[@язык='русский']`, 1) |
| 100 | } |
| 101 | |
| 102 | func TestGreekAttributesInXPath(t *testing.T) { |
| 103 | doc := createNode("", RootNode) |
nothing calls this directly
no test coverage detected
searching dependent graphs…