]> begriffs open source - libtap/blob - t/notediag.c
Add is() and isnt() macros.
[libtap] / t / notediag.c
1 /* test3 make sure that note and diag are giving correct output  */
2
3 #include "../tap.h"
4
5 int main () {
6     
7     note("note no new line");    
8     note("note new line\n");
9     note("");
10     note(NULL);
11     
12     diag("diag no new line");    
13     diag("diag new line\n");
14     diag("");
15     diag(NULL);
16     \r
17     return 1;
18 }
19