mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 07:20:39 +00:00
data/models/ 100% coverage
This commit is contained in:
parent
9baf1da157
commit
f6452fbe96
2 changed files with 40 additions and 0 deletions
38
test/data/models/exposure_pair_test.dart
Normal file
38
test/data/models/exposure_pair_test.dart
Normal file
|
@ -0,0 +1,38 @@
|
||||||
|
import 'package:lightmeter/data/models/exposure_pair.dart';
|
||||||
|
import 'package:m3_lightmeter_resources/m3_lightmeter_resources.dart';
|
||||||
|
import 'package:test/test.dart';
|
||||||
|
|
||||||
|
void main() {
|
||||||
|
test('toString()', () {
|
||||||
|
expect(
|
||||||
|
ExposurePair(ApertureValue.values.first, ShutterSpeedValue.values.first).toString(),
|
||||||
|
'${ApertureValue.values.first} - ${ShutterSpeedValue.values.first}',
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('==', () {
|
||||||
|
expect(
|
||||||
|
ExposurePair(ApertureValue.values.first, ShutterSpeedValue.values.first) ==
|
||||||
|
ExposurePair(ApertureValue.values.first, ShutterSpeedValue.values.first),
|
||||||
|
true,
|
||||||
|
);
|
||||||
|
expect(
|
||||||
|
ExposurePair(ApertureValue.values.first, ShutterSpeedValue.values.first) ==
|
||||||
|
ExposurePair(ApertureValue.values.first, ShutterSpeedValue.values.last),
|
||||||
|
false,
|
||||||
|
);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('hashCode', () {
|
||||||
|
expect(
|
||||||
|
ExposurePair(ApertureValue.values.first, ShutterSpeedValue.values.first).hashCode ==
|
||||||
|
ExposurePair(ApertureValue.values.first, ShutterSpeedValue.values.first).hashCode,
|
||||||
|
true,
|
||||||
|
);
|
||||||
|
expect(
|
||||||
|
ExposurePair(ApertureValue.values.first, ShutterSpeedValue.values.first).hashCode ==
|
||||||
|
ExposurePair(ApertureValue.values.first, ShutterSpeedValue.values.last).hashCode,
|
||||||
|
false,
|
||||||
|
);
|
||||||
|
});
|
||||||
|
}
|
|
@ -6,11 +6,13 @@ void main() {
|
||||||
expect(SupportedLocale.en.intlName, 'en');
|
expect(SupportedLocale.en.intlName, 'en');
|
||||||
expect(SupportedLocale.fr.intlName, 'fr');
|
expect(SupportedLocale.fr.intlName, 'fr');
|
||||||
expect(SupportedLocale.ru.intlName, 'ru');
|
expect(SupportedLocale.ru.intlName, 'ru');
|
||||||
|
expect(SupportedLocale.zh.intlName, 'zh');
|
||||||
});
|
});
|
||||||
|
|
||||||
test('localizedName', () {
|
test('localizedName', () {
|
||||||
expect(SupportedLocale.en.localizedName, 'English');
|
expect(SupportedLocale.en.localizedName, 'English');
|
||||||
expect(SupportedLocale.fr.localizedName, 'Français');
|
expect(SupportedLocale.fr.localizedName, 'Français');
|
||||||
expect(SupportedLocale.ru.localizedName, 'Русский');
|
expect(SupportedLocale.ru.localizedName, 'Русский');
|
||||||
|
expect(SupportedLocale.zh.localizedName, '简体中文');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue