18 lines
450 B
Dart
18 lines
450 B
Dart
import 'package:collection/collection.dart';
|
|
import 'package:jadb/const_data/radicals.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
void main() {
|
|
test('All constant radicals are 253 in total', () {
|
|
expect(radicals.values.flattenedToSet.length, 253);
|
|
});
|
|
|
|
// test('All constant radicals have at least 1 associated kanji in KANJIDIC2', () {
|
|
|
|
// });
|
|
|
|
// test('All constant radicals match the stroke order listed in KANJIDIC2', () {
|
|
|
|
// });
|
|
}
|