1 2 3 4 5 6 7 8 9 10 11 12 13
use test_casing::test_casing; #[test_casing("2", ["test", "this"])] fn tested_function(_arg: &str) { // Does nothing } #[test_casing(0, [])] fn other_tested_function(_arg: &str) { // Does nothing } fn main() {}