blob: 85997f66de66d9618a229029e507e839bf3c0151 [file] [log] [blame]
Paul Bakker9d781402011-05-09 16:17:09 +00001BEGIN_HEADER
2#include <polarssl/error.h>
3END_HEADER
4
5BEGIN_CASE
6error_strerror:code:result_str
7{
8 char buf[500];
9
10 error_strerror( {code}, buf, 500 );
11
12 TEST_ASSERT( strcmp( buf, {result_str} ) == 0 );
13}
14END_CASE