(t *testing.T)
| 100 | } |
| 101 | |
| 102 | func TestGreekAttributesInXPath(t *testing.T) { |
| 103 | doc := createNode("", RootNode) |
| 104 | div := doc.createChildNode("div", ElementNode) |
| 105 | div.addAttribute("γλώσσα", "ελληνικά") |
| 106 | div.lines = 1 |
| 107 | test_xpath_elements(t, doc, `//div[@γλώσσα='ελληνικά']`, 1) |
| 108 | } |
| 109 | |
| 110 | func TestCyrillicAndGreekAttributesMixedInXPath(t *testing.T) { |
| 111 | doc := createNode("", RootNode) |
nothing calls this directly
no test coverage detected
searching dependent graphs…