use crate::rubase::{BaseEntitySingle };
use crate::rubase::get_self::GetSelf;
use crate::rudi::difactroy::find_bean_di_factroy;
use crate::rudi::find_bean_di_example;
use crate::rulog;
#[test]
fn test_01_example() {
let example = find_bean_di_example().unwrap();
println!("{}", example.id);
}
#[test]
fn test_02_make_di() {
find_bean_di_factroy().unwrap().make_di();
}