This is the mail archive of the mauve-discuss@sourceware.cygnus.com mailing list for the Mauve project. See the Mauve home page for more information.


[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index] [Subject Index] [Author Index] [Thread Index]

Re: What are we testing ? (fwd)



> 
> Also, I'd like tags better, like so:
> 
>     harness.check (! Character.isIdentifierIgnorable('Z'), "check Z");
>     harness.check (Character.isIdentifierIgnorable('\u202c', "check 202c"));
>     harness.check (Character.isIdentifierIgnorable('\ufeff', "check no-break"));
> 

 Or maybe add comments like so:

     /* 1 */ harness.check (! Character.isIdentifierIgnorable('Z'));
     /* 2 */ harness.check (Character.isIdentifierIgnorable('\u202c'));
     /* 3 */ harness.check (Character.isIdentifierIgnorable('\ufeff'));

	- Godmar