Closed drwilco closed 4 years ago
This is a major reason why there is still alpha
version instead of regular v1.0.0
- the documentation lacks a lot :(
If you are using rust 2018 edition
I'd recommend dropping whole extern crate test_case
.
But no matter which edition you choose you still need to do one of two things:
Either wrap every test_case with #[cfg(test)]
(highly recommended):
#[cfg(test)] // Skip this and next line if 2018 edition
extern crate test_case;
#[cfg(test)]
mod tests {
use test_case::test_case;
#[test_case( 2, 4 ; "when both operands are possitive")]
#[test_case( 4, 2 ; "when operands are swapped")]
#[test_case(-2, -4 ; "when both operands are negative")]
fn multiplication_tests(x: i8, y: i8) {
let actual = (x * y).abs();
assert_eq!(8, actual)
}
}
Second example has extern crate
inside of tests
module - only for 2015 ed.
#[cfg(test)]
mod tests {
extern crate test_case;
use self::test_case::test_case; // Remember about `self::`
#[test_case( 2, 4 ; "when both operands are possitive")]
#[test_case( 4, 2 ; "when operands are swapped")]
#[test_case(-2, -4 ; "when both operands are negative")]
fn multiplication_tests(x: i8, y: i8) {
let actual = (x * y).abs();
assert_eq!(8, actual)
}
}
Or you move test_case
from dev-dependencies
to dependencies
and skip whole #[cfg(test)]
attribute.
But I do not recommend that - it makes your production build longer and executable bloated with test code. There is a good reason to use #[cfg(test)]
:
extern crate test_case; // Again in 2018 ed you can skip this line.
use test_case::test_case;
#[test_case( 2, 4 ; "when both operands are possitive")]
#[test_case( 4, 2 ; "when operands are swapped")]
#[test_case(-2, -4 ; "when both operands are negative")]
fn multiplication_tests(x: i8, y: i8) {
let actual = (x * y).abs();
assert_eq!(8, actual)
}
Anyway - sorry for the confusion. I'll try to rewrite README. Meanwhile, if you have any questions or PRs - don't hesitate :)
No worries! I was mainly worried I was doing something wrong.
I'm finding this crate very useful!
The README has the following example for the base usage:
However, I cannot get this to work. I get the following error:
When I take out the
!
, things work better, but not quite yet. When building regular (not test) theextern
anduse
lines trigger errors. These go away when I do the following:Am I doing things wrong?