mirror of /home/gitosis/repositories/libowfat.git
add unit test
This commit is contained in:
parent
2c4e279f1e
commit
eb4d3afbea
|
@ -15,3 +15,17 @@ size_t str_chr(const char *in, char needle) {
|
|||
}
|
||||
return (size_t)(t-in);
|
||||
}
|
||||
|
||||
#ifdef UNITTEST
|
||||
#include <assert.h>
|
||||
#include <string.h>
|
||||
|
||||
int main() {
|
||||
char buf[100];
|
||||
strcpy(buf,"abcdefghijklmnopqrstuvwxyz");
|
||||
size_t i;
|
||||
for (i=0; i<26; ++i)
|
||||
assert(str_chr(buf,buf[i])==i);
|
||||
assert(str_chr(buf,'X')==26);
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue