better test cases for ClientUtils.encode()
Showing
1 changed file
with
2 additions
and
1 deletions
... | @@ -6,7 +6,8 @@ | ... | @@ -6,7 +6,8 @@ |
6 | var testCases = { | 6 | var testCases = { |
7 | 'an empty string': '', | 7 | 'an empty string': '', |
8 | 'a word': 'plop', | 8 | 'a word': 'plop', |
9 | 'an utf8 string': '<chè!cs!<egfhèqzgrqgzf', | 9 | 'a null char': 'a\u0000', |
10 | 'an utf8 string': 'ÀÁÃÄÅÇÈÉÊËÌÍÎÏÒÓÔÕÖÙÚÛÜÝàáâãäåçèéêëìíîïðòóôõöùúûüýÿ', | ||
10 | 'song lyrics': ("Voilà l'été, j'aperçois le soleil\n" + | 11 | 'song lyrics': ("Voilà l'été, j'aperçois le soleil\n" + |
11 | "Les nuages filent et le ciel s'éclaircit\n" + | 12 | "Les nuages filent et le ciel s'éclaircit\n" + |
12 | "Et dans ma tête qui bourdonnent?\n" + | 13 | "Et dans ma tête qui bourdonnent?\n" + | ... | ... |
-
Please register or sign in to post a comment