(t *testing.T)
| 144 | } |
| 145 | |
| 146 | func TestChineseCharactersExpression(t *testing.T) { |
| 147 | doc := createNode("", RootNode) |
| 148 | n := doc.createChildNode("中文", ElementNode) |
| 149 | n.createChildNode("你好世界", TextNode) |
| 150 | test_xpath_values(t, doc, "//中文", "你好世界") |
| 151 | } |
| 152 | |
| 153 | func TestBUG_104(t *testing.T) { |
| 154 | // BUG https://github.com/antchfx/xpath/issues/104 |
nothing calls this directly
no test coverage detected
searching dependent graphs…