- Added test for self_test()

This commit is contained in:
Paul Bakker
2009-07-05 11:29:38 +00:00
parent 0a083c2a12
commit 3d36082a8d
6 changed files with 29 additions and 0 deletions

View File

@@ -34,3 +34,10 @@ base64_decode:src_string:dst_string
TEST_ASSERT( strcmp( (char *) dst_str, {dst_string} ) == 0 );
}
END_CASE
BEGIN_CASE
base64_selftest:
{
TEST_ASSERT( base64_self_test( 0 ) == 0 );
}
END_CASE