()
| 1038 | |
| 1039 | #[test] |
| 1040 | fn test_parse_func_gadgets() -> Result<()> { |
| 1041 | crate::config::Config::init_test("libavc"); |
| 1042 | let gadgets = get_func_gadgets(); |
| 1043 | for gadget in gadgets { |
| 1044 | println!("{}", gadget.gen_signature()) |
| 1045 | } |
| 1046 | Ok(()) |
| 1047 | } |
| 1048 | |
| 1049 | #[test] |
| 1050 | fn test_parse_type_gadgets() -> Result<()> { |
nothing calls this directly
no test coverage detected