rococo_emulated_chain/
lib.rs1pub use rococo_runtime;
16
17pub mod genesis;
18
19use emulated_integration_tests_common::{
21 impl_accounts_helpers_for_relay_chain, impl_assert_events_helpers_for_relay_chain,
22 impl_hrmp_channels_helpers_for_relay_chain, impl_send_transact_helpers_for_relay_chain,
23 xcm_emulator::decl_test_relay_chains,
24};
25
26decl_test_relay_chains! {
28 #[api_version(14)]
29 pub struct Rococo {
30 genesis = genesis::genesis(),
31 on_init = (),
32 runtime = rococo_runtime,
33 core = {
34 SovereignAccountOf: rococo_runtime::xcm_config::LocationConverter,
35 },
36 pallets = {
37 XcmPallet: rococo_runtime::XcmPallet,
38 Sudo: rococo_runtime::Sudo,
39 Balances: rococo_runtime::Balances,
40 Hrmp: rococo_runtime::Hrmp,
41 Identity: rococo_runtime::Identity,
42 IdentityMigrator: rococo_runtime::IdentityMigrator,
43 Treasury: rococo_runtime::Treasury,
44 AssetRate: rococo_runtime::AssetRate,
45 }
46 },
47}
48
49impl_accounts_helpers_for_relay_chain!(Rococo);
51impl_assert_events_helpers_for_relay_chain!(Rococo);
52impl_hrmp_channels_helpers_for_relay_chain!(Rococo);
53impl_send_transact_helpers_for_relay_chain!(Rococo);