(t *testing.T)
| 114 | } |
| 115 | |
| 116 | func Test_func_string_join(t *testing.T) { |
| 117 | //(t, empty_example, `string-join(('Now', 'is', 'the', 'time', '...'), '')`, "Now is the time ...") |
| 118 | test_xpath_eval(t, empty_example, `string-join("some text", ";")`, "some text") |
| 119 | test_xpath_eval(t, book_example, `string-join(//book/@category, ";")`, "cooking;children;web;web") |
| 120 | } |
| 121 | |
| 122 | func Test_func_string_length(t *testing.T) { |
| 123 | test_xpath_eval(t, empty_example, `string-length("Harp not on that string, madam; that is past.")`, float64(45)) |
nothing calls this directly
no test coverage detected
searching dependent graphs…