(store: &mut Store<()>, func: Func)
| 11 | } |
| 12 | |
| 13 | async fn run_smoke_test(store: &mut Store<()>, func: Func) { |
| 14 | func.call_async(&mut *store, &[], &mut []).await.unwrap(); |
| 15 | func.call_async(&mut *store, &[], &mut []).await.unwrap(); |
| 16 | } |
| 17 | |
| 18 | async fn run_smoke_typed_test(store: &mut Store<()>, func: Func) { |
| 19 | let func = func.typed::<(), ()>(&store).unwrap(); |
no test coverage detected