| ... | @@ -1,7 +1,13 @@ | ... | @@ -1,7 +1,13 @@ |
| 1 | const std = @import("std"); | 1 | const std = @import("std"); |
| 2 | const icu = @import("icu"); | 2 | const icu = @import("icu"); |
| 3 | | 3 | |
| 4 | // TODO: run the official test suite from unicode | 4 | // TODO: run the official tests from unicode |
| 5 | test { | 5 | test { |
| 6 | std.testing.refAllDeclsRecursive(icu); | 6 | _ = &icu.hasDerivedCoreProperty; |
| | 7 | _ = &icu.hasProperty; |
| | 8 | _ = &icu.hasEmojiCategory; |
| | 9 | _ = &icu.age; |
| | 10 | _ = &icu.eastAsianWidth; |
| | 11 | _ = &icu.bidiPairedBracketType; |
| | 12 | _ = &icu.toLower; |
| 7 | } | 13 | } |