refactor: continue refactoring kernel

This commit is contained in:
2026-07-22 16:59:55 +08:00
parent 1514d25da1
commit 5a41c6266c
4 changed files with 212 additions and 186 deletions
+11
View File
@@ -0,0 +1,11 @@
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();
}