Files
jadb/test/const_data/radicals_test.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

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