Files
jadb/test/const_data/kanji_grades.dart
h7x4 bb44bf786a
All checks were successful
Build and test / evals (push) Successful in 11m38s
tests: move const_data tests to test/const_data
2026-03-02 17:16:14 +09:00

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', () {
// });
}