-
-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Create declarative macro which helps intellij recognize individual test cases #21
Comments
Another way is to allow specifying #[parameterized(
a = { 1, 2, 3 },
b = { 5, 6, 7},
)]
#[test]
fn le_test(a: i32, b: i32) {
assert!(a < 4 && b > 4);
} Which is non-ideal (you can only put it after |
Oh wow :), that's a great idea. Thank you! I will look into this. |
declarative macro for which wraps ide! construct, test inputs and test cases
|
The text was updated successfully, but these errors were encountered: