Add more tests for 100% coverage.
This commit is contained in:
parent
9b3e4b63f6
commit
c637c55e42
|
@ -5,6 +5,9 @@ use test_case::test_case;
|
|||
#[test_case(0, ""; "minimum")]
|
||||
#[test_case(3999, "MMMCMXCIX"; "maximum")]
|
||||
#[test_case(1666, "MDCLXVI"; "every character")]
|
||||
#[test_case(1987, "MCMLXXXVII"; "all numbers 1")]
|
||||
#[test_case(2654, "MMDCLIV"; "all numbers 2")]
|
||||
#[test_case(321, "CCCXXI"; "all numbers 3")]
|
||||
#[test_case(900, "CM"; "with subtracting")]
|
||||
#[test_case(20, "XX"; "without subtracting")]
|
||||
fn test_integer_to_roman(input: i32, expected: &str) {
|
||||
|
|
Loading…
Reference in New Issue