mirror of
https://github.com/kuhyx/testsAndMisc-archive.git
synced 2026-07-04 13:43:02 +02:00
15 lines
413 B
Dart
15 lines
413 B
Dart
|
|
import 'package:flutter_test/flutter_test.dart';
|
||
|
|
import 'package:pomodoro_app/models/pomodoro_state.dart';
|
||
|
|
import 'package:pomodoro_app/theme/pomodoro_theme.dart';
|
||
|
|
|
||
|
|
void main() {
|
||
|
|
group('PomodoroTheme.colorForMode', () {
|
||
|
|
test('returns longBreakColor for longBreak', () {
|
||
|
|
expect(
|
||
|
|
PomodoroTheme.colorForMode(PomodoroMode.longBreak),
|
||
|
|
PomodoroTheme.longBreakColor,
|
||
|
|
);
|
||
|
|
});
|
||
|
|
});
|
||
|
|
}
|