(t *testing.T)
| 133 | } |
| 134 | |
| 135 | func TestNonEnglishExpression(t *testing.T) { |
| 136 | doc := createNode("", RootNode) |
| 137 | n_1 := doc.createChildNode("Σειρά", ElementNode) |
| 138 | n_1.lines = 1 |
| 139 | n_2 := n_1.createChildNode("ελληνικά", ElementNode) |
| 140 | n_2.lines = 2 |
| 141 | n_2.createChildNode("hello", TextNode) |
| 142 | test_xpath_elements(t, doc, "//Σειρά", 1) |
| 143 | test_xpath_values(t, doc, "//Σειρά/ελληνικά", "hello") |
| 144 | } |
| 145 | |
| 146 | func TestChineseCharactersExpression(t *testing.T) { |
| 147 | doc := createNode("", RootNode) |
nothing calls this directly
no test coverage detected
searching dependent graphs…