22 lines
627 B
Dart
22 lines
627 B
Dart
import 'package:collection/collection.dart';
|
|
import 'package:jadb/const_data/kanji_grades.dart';
|
|
import 'package:test/test.dart';
|
|
|
|
void main() {
|
|
test('All constant kanji in jouyouKanjiByGrades are 2136 in total', () {
|
|
expect(jouyouKanjiByGrades.values.flattenedToSet.length, 2136);
|
|
});
|
|
|
|
// test('All constant kanji in jouyouKanjiByGrades are present in KANJIDIC2', () {
|
|
|
|
// });
|
|
|
|
// test('All constant kanji in jouyouKanjiByGrades have matching grade as in KANJIDIC2', () {
|
|
|
|
// });
|
|
|
|
// test('All constant kanji in jouyouKanjiByGradesAndStrokeCount have matching stroke count as in KANJIDIC2', () {
|
|
|
|
// });
|
|
}
|