#![cfg(test)] mod public_api; mod smoke; mod staking_module; use public_api::*; use crate::mock::Test; use crate::*; use sp_std::cell::RefCell; use sp_std::rc::Rc; use std::panic; pub(crate) type OpeningId = ::OpeningId; pub(crate) type ApplicationId = ::ApplicationId; pub(crate) type BlockNumber = ::BlockNumber; pub(crate) type StakeId = ::StakeId; pub(crate) type Balance = <::Currency as Currency< ::AccountId, >>::Balance; // Debug test object content. Recurring temporary usage - do not delete. #[allow(dead_code)] pub fn debug_print(obj: T) { println!("{:?}", obj); }