[poincare] Tidy tests and add TODO for tests that need to be completed

This commit is contained in:
Émilie Feral
2019-08-02 11:43:39 +02:00
parent cdbcc3c6bc
commit cedcab21ec
50 changed files with 3083 additions and 3415 deletions

View File

@@ -25,6 +25,11 @@ void assert_code_point_at_previous_glyph_position_is(const char * string, const
quiz_assert(d.nextCodePoint() == c);
}
QUIZ_CASE(ion_utf8_code_point_system_parentheses) {
quiz_assert(UCodePointLeftSystemParenthesis == '\u0012');
quiz_assert(UCodePointRightSystemParenthesis == '\u0013');
}
QUIZ_CASE(ion_utf8_decode_forward) {
assert_decodes_to("\x20", 0x20);
assert_decodes_to("\xC2\xA2", 0xA2);