mirror of https://github.com/flutter/pinball.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
434 B
20 lines
434 B
// ignore_for_file: prefer_const_constructors
|
|
|
|
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:pinball/theme/theme.dart';
|
|
|
|
void main() {
|
|
group('ThemeState', () {
|
|
test('can be instantiated', () {
|
|
expect(const ThemeState.initial(), isNotNull);
|
|
});
|
|
|
|
test('supports value equality', () {
|
|
expect(
|
|
ThemeState.initial(),
|
|
equals(const ThemeState.initial()),
|
|
);
|
|
});
|
|
});
|
|
}
|