(t *testing.T, depth int)
| 1356 | } |
| 1357 | |
| 1358 | func createNestedMapExpr(t *testing.T, depth int) string { |
| 1359 | t.Helper() |
| 1360 | if depth == 0 { |
| 1361 | return `{"value": 1}` |
| 1362 | } |
| 1363 | return fmt.Sprintf(`{"nested": %s}`, createNestedMapExpr(t, depth-1)) |
| 1364 | } |
| 1365 | |
| 1366 | func TestVM_Limits(t *testing.T) { |
| 1367 | tests := []struct { |
no test coverage detected
searching dependent graphs…