| 3 | import java.io.File; |
| 4 | |
| 5 | public class TestUtil { |
| 6 | public final static File WASM_TARGET_DIR = new File("target/wasm32-wasi/debug"); |
| 7 | public final static File MATH_PATH = new File(WASM_TARGET_DIR, "math.wasm"); |
| 8 | public final static File MATH_WIT_PATH = new File(WASM_TARGET_DIR, "math_wit.wasm"); |
| 9 | public final static File SLICES_PATH = new File(WASM_TARGET_DIR, "slices.wasm"); |
| 10 | public final static File STRINGS_PATH = new File(WASM_TARGET_DIR, "strings.wasm"); |
| 11 | } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…