test: add tests for the isBetween function
This commit is contained in:
parent
8330f0bc80
commit
9288df4d65
|
|
@ -0,0 +1,46 @@
|
|||
import 'package:flutter_card_swiper/src/extensions.dart';
|
||||
import 'package:flutter_test/flutter_test.dart';
|
||||
|
||||
void main() {
|
||||
group('isBetween', () {
|
||||
test('should return true when value is within range', () {
|
||||
const value = 5;
|
||||
const from = 1;
|
||||
const to = 10;
|
||||
|
||||
final result = value.isBetween(from, to);
|
||||
|
||||
expect(result, isTrue);
|
||||
});
|
||||
|
||||
test('should return true when value is equal to the range limits', () {
|
||||
const value = 1;
|
||||
const from = 1;
|
||||
const to = 1;
|
||||
|
||||
final result = value.isBetween(from, to);
|
||||
|
||||
expect(result, isTrue);
|
||||
});
|
||||
|
||||
test('should return false when value is outside the range', () {
|
||||
const value = 15;
|
||||
const from = 1;
|
||||
const to = 10;
|
||||
|
||||
final result = value.isBetween(from, to);
|
||||
|
||||
expect(result, isFalse);
|
||||
});
|
||||
|
||||
test('should return false when the range limits are inverted', () {
|
||||
const value = 5;
|
||||
const from = 10;
|
||||
const to = 1;
|
||||
|
||||
final result = value.isBetween(from, to);
|
||||
|
||||
expect(result, isFalse);
|
||||
});
|
||||
});
|
||||
}
|
||||
Loading…
Reference in New Issue