testsAndMisc-archive/pomodoro_app/test/theme/pomodoro_theme_test.dart
Krzysztof kuhy Rudnicki 01091c09ce Add tests and fix pre-commit issues across all projects
- C/lichess_random_engine, vocabulary_curve, misc/split,
  1dvelocitysimulator, opening_learner: test suites added
- CPP/miscelanious: tests added
- TS/battery-status, champions_leauge_scores, two-inputs: tests added
- python_pkg/fm24_searcher, wake_alarm: new packages added
- Fix ruff/cppcheck/eslint/clang-format failures
- Update .gitignore for C/C++ build artifacts
2026-04-12 20:45:24 +02:00

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,
);
});
});
}