(t *testing.T)
| 35 | } |
| 36 | |
| 37 | func Test_func_ceiling_floor(t *testing.T) { |
| 38 | test_xpath_eval(t, empty_example, "ceiling(5.2)", float64(6)) |
| 39 | test_xpath_eval(t, empty_example, "floor(5.2)", float64(5)) |
| 40 | } |
| 41 | |
| 42 | func Test_func_concat(t *testing.T) { |
| 43 | test_xpath_eval(t, empty_example, `concat("1", "2", "3")`, "123") |
nothing calls this directly
no test coverage detected
searching dependent graphs…