Add test for internal atostr function
This commit is contained in:
parent
faba06a2b6
commit
f6dcf53a35
1 changed files with 20 additions and 2 deletions
|
@ -2,10 +2,11 @@
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <UDPC_Deque.h>
|
#include <UDPC_Deque.h>
|
||||||
|
#include <UDPConnection.h>
|
||||||
|
|
||||||
static UnitTestState UDPC_uts = {0, 0};
|
static UnitTestState UDPC_uts = {0, 0};
|
||||||
|
|
||||||
int main()
|
void TEST_DEQUE()
|
||||||
{
|
{
|
||||||
int arr[32];
|
int arr[32];
|
||||||
char *temp = NULL;
|
char *temp = NULL;
|
||||||
|
@ -216,6 +217,23 @@ int main()
|
||||||
*/
|
*/
|
||||||
|
|
||||||
UDPC_Deque_destroy(deque);
|
UDPC_Deque_destroy(deque);
|
||||||
UNITTEST_REPORT(DEQUE_TEST)
|
UNITTEST_REPORT(DEQUE)
|
||||||
|
}
|
||||||
|
|
||||||
|
void TEST_ATOSTR()
|
||||||
|
{
|
||||||
|
UDPC_Context *ctx = malloc(sizeof(UDPC_Context));
|
||||||
|
ASSERT_EQ_MEM(
|
||||||
|
UDPC_INTERNAL_atostr(ctx, (0xAC << 24) | (0x1E << 16) | (0x1 << 8) | 0xFF),
|
||||||
|
"172.30.1.255",
|
||||||
|
12);
|
||||||
|
free(ctx);
|
||||||
|
UNITTEST_REPORT(ATOSTR);
|
||||||
|
}
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
TEST_DEQUE();
|
||||||
|
TEST_ATOSTR();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue