Skip to content

Commit

Permalink
test(mixed_num): 🧪 add test case for longer numbers
Browse files Browse the repository at this point in the history
Signed-off-by: Albert Mañosa <26429103+albertms10@users.noreply.github.com>
  • Loading branch information
albertms10 committed May 12, 2024
1 parent 1899b4f commit fa4286c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions test/utils/mixed_num_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ void main() {
expect(MixedNum.parse('2'), const MixedNum(2));
expect(MixedNum.parse('5 3/5'), const MixedNum(5, 3, 5));
expect(MixedNum.parse('4 5/4'), const MixedNum(4, 5, 4));
expect(MixedNum.parse('32 10/111'), const MixedNum(32, 10, 111));
expect(MixedNum.parse('-4 3/4'), const MixedNum(-4, 3, 4));
});
});
Expand Down

0 comments on commit fa4286c

Please sign in to comment.