(t *testing.T)
| 1639 | } |
| 1640 | |
| 1641 | func Test_App_quoteString_DetachesFromPooledBuffer(t *testing.T) { |
| 1642 | t.Parallel() |
| 1643 | |
| 1644 | app := New() |
| 1645 | |
| 1646 | first := app.quoteString("a b") |
| 1647 | second := app.quoteString("x y") |
| 1648 | |
| 1649 | require.Equal(t, "a+b", first) |
| 1650 | require.Equal(t, "x+y", second) |
| 1651 | require.Equal(t, "a+b", first) |
| 1652 | } |
| 1653 | |
| 1654 | func Test_App_quoteRawString_DetachesFromPooledBuffer(t *testing.T) { |
| 1655 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…