radix_engine_interface/blueprints/test_utils/
invocations.rs

1use radix_common::prelude::*;
2
3pub const TEST_UTILS_BLUEPRINT: &str = "TestUtils";
4
5pub const TEST_UTILS_PANIC_IDENT: &str = "panic";
6
7#[derive(Debug, Clone, Eq, PartialEq, ScryptoSbor, ManifestSbor)]
8pub struct TestUtilsPanicInput(pub String);
9
10pub type TestUtilsPanicManifestInput = TestUtilsPanicInput;
11
12pub type TestUtilsPanicOutput = ();