Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
Delete tests as well
Browse files Browse the repository at this point in the history
  • Loading branch information
oprypin committed Jan 25, 2024
1 parent 59f7bfa commit f503c2f
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions test/extensions_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -866,23 +866,6 @@ void main() {
});
});
});
group('of nullable', () {
group('.whereNotNull', () {
test('empty', () {
expect(iterable(<int?>[]).whereNotNull(), isEmpty);
});
test('single', () {
expect(iterable(<int?>[null]).whereNotNull(), isEmpty);
expect(iterable(<int?>[1]).whereNotNull(), [1]);
});
test('multiple', () {
expect(iterable(<int?>[1, 3, 5]).whereNotNull(), [1, 3, 5]);
expect(iterable(<int?>[null, null, null]).whereNotNull(), isEmpty);
expect(
iterable(<int?>[1, null, 3, null, 5]).whereNotNull(), [1, 3, 5]);
});
});
});
group('of number', () {
group('.sum', () {
test('empty', () {
Expand Down

0 comments on commit f503c2f

Please sign in to comment.