use crate::rucmd;
use crate::rudi::difactroy::difactroy_init;
#[test]
fn test_01_rucmd_test() {
let cmd = rucmd::find_bean_rucmd().unwrap();
cmd.test();
}
#[test]
fn test_02_rucmd_docmd() {
let cmd = rucmd::find_bean_rucmd().unwrap();
cmd.do_cmd();
}
#[test]
fn test_04_rucmd_cfg() {
let cmd = rucmd::find_bean_rucmd().unwrap();
cmd.cfg();
}
#[test]
fn test_11_make_di() {
difactroy_init::find_bean_difactroy().unwrap().make_di();
}
#[test]
fn test_12_lis_di() {
difactroy_init::find_bean_difactroy().unwrap().list_di();
}