scrypto_test/environment/
types.rs

1//! This module defines various types that the test runtime depends on and specifies what the
2//! generic parameters are for them.
3
4use crate::prelude::*;
5
6pub type TestVm<'g> = Vm<'g, DefaultWasmEngine, NoExtension>;
7pub type TestTrack<'g, D> = Track<'g, D>;
8pub type TestSystemConfig<'g> = System<TestVm<'g>>;
9pub type TestKernel<'g, D> = Kernel<'g, TestSystemConfig<'g>, TestTrack<'g, D>>;
10pub type TestSystemService<'g, D> = SystemService<'g, TestKernel<'g, D>>;