forked from frondeus/test-case
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Invert the left and right output for simple test cases
Now the right side is the 'expected' one, and the left side is the 'input'. Example: ```rust #[test_case(2, 2 => 2 + 3)] fn result_which_panics(x: u32, y: u32) -> u32 { x + y } ``` Previously, the output was: ``` Left: 5 Right: 4 ``` Now, it is: ``` Left: 4 Right: 5 ``` Refs: frondeus#125
- Loading branch information
1 parent
1ea705c
commit 110f52c
Showing
4 changed files
with
9 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters