radix_engine_interface/blueprints/test_utils/
invocations.rs

1
2
3
4
5
6
7
8
9
10
11
12
use radix_common::prelude::*;

pub const TEST_UTILS_BLUEPRINT: &str = "TestUtils";

pub const TEST_UTILS_PANIC_IDENT: &str = "panic";

#[derive(Debug, Clone, Eq, PartialEq, ScryptoSbor, ManifestSbor)]
pub struct TestUtilsPanicInput(pub String);

pub type TestUtilsPanicManifestInput = TestUtilsPanicInput;

pub type TestUtilsPanicOutput = ();