mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 07:20:39 +00:00
SelectableInheritedModel
tests
This commit is contained in:
parent
ec6b37dfe0
commit
ea32b320e3
1 changed files with 76 additions and 0 deletions
76
test/utils/selectable_provider_test.dart
Normal file
76
test/utils/selectable_provider_test.dart
Normal file
|
@ -0,0 +1,76 @@
|
|||
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_test/flutter_test.dart';
|
||||
import 'package:lightmeter/utils/selectable_provider.dart';
|
||||
|
||||
void main() {
|
||||
group('SelectableInheritedModel.updateShouldNotifyDependent', () {
|
||||
final model = SelectableInheritedModel<int>(
|
||||
values: List.generate(25, (index) => index),
|
||||
selected: 1,
|
||||
child: const SizedBox(),
|
||||
);
|
||||
|
||||
test(
|
||||
'`{}`',
|
||||
() {
|
||||
expect(
|
||||
model.updateShouldNotifyDependent(
|
||||
SelectableInheritedModel<int>(
|
||||
values: List.generate(25, (index) => index),
|
||||
selected: 1,
|
||||
child: const SizedBox(),
|
||||
),
|
||||
{},
|
||||
),
|
||||
false,
|
||||
);
|
||||
},
|
||||
);
|
||||
|
||||
test(
|
||||
'`{SelectableAspect.list}`',
|
||||
() {
|
||||
expect(
|
||||
model.updateShouldNotifyDependent(
|
||||
SelectableInheritedModel<int>(
|
||||
values: List.generate(25, (index) => index),
|
||||
selected: 1,
|
||||
child: const SizedBox(),
|
||||
),
|
||||
{SelectableAspect.list},
|
||||
),
|
||||
true,
|
||||
);
|
||||
},
|
||||
);
|
||||
|
||||
test(
|
||||
'`{SelectableAspect.selected}`',
|
||||
() {
|
||||
expect(
|
||||
model.updateShouldNotifyDependent(
|
||||
SelectableInheritedModel<int>(
|
||||
values: List.generate(25, (index) => index),
|
||||
selected: 1,
|
||||
child: const SizedBox(),
|
||||
),
|
||||
{SelectableAspect.selected},
|
||||
),
|
||||
false,
|
||||
);
|
||||
expect(
|
||||
model.updateShouldNotifyDependent(
|
||||
SelectableInheritedModel<int>(
|
||||
values: List.generate(25, (index) => index),
|
||||
selected: 2,
|
||||
child: const SizedBox(),
|
||||
),
|
||||
{SelectableAspect.selected},
|
||||
),
|
||||
true,
|
||||
);
|
||||
},
|
||||
);
|
||||
});
|
||||
}
|
Loading…
Reference in a new issue