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
483 B
20 lines
483 B
3 years ago
|
// ignore_for_file: prefer_const_constructors
|
||
|
|
||
|
import 'package:flutter_test/flutter_test.dart';
|
||
3 years ago
|
import 'package:pinball/select_character/select_character.dart';
|
||
3 years ago
|
|
||
|
void main() {
|
||
|
group('ThemeState', () {
|
||
|
test('can be instantiated', () {
|
||
3 years ago
|
expect(const CharacterThemeState.initial(), isNotNull);
|
||
3 years ago
|
});
|
||
|
|
||
|
test('supports value equality', () {
|
||
|
expect(
|
||
3 years ago
|
CharacterThemeState.initial(),
|
||
|
equals(const CharacterThemeState.initial()),
|
||
3 years ago
|
);
|
||
|
});
|
||
|
});
|
||
|
}
|