Files
LCRConnector/kernel/lcrconn/tests/spec.rs
T

12 lines
330 B
Rust
Raw Normal View History

2026-07-22 16:59:55 +08:00
use lcrconn::spec;
#[test]
fn test_spec_preset() {
// All individual preset and catalog preset should nit panic
let specs = spec::SpecGroup::resistor_preset();
let specs = spec::SpecGroup::capacitor_preset();
let specs = spec::SpecGroup::inductor_preset();
let specs = spec::SpecCatalog::devices_preset();
}