Add unit tests for DHCP

Three simple tests that test the basic functionality of the DHCP client.
They require that UDP checksums are off for now.
This commit is contained in:
Erik Ekman
2012-03-22 10:52:05 +01:00
committed by goldsimon
parent c622985fda
commit 679d3fd5b3
4 changed files with 804 additions and 1 deletions

View File

@@ -0,0 +1,8 @@
#ifndef __TEST_DHCP_H__
#define __TEST_DHCP_H__
#include "../lwip_check.h"
Suite* dhcp_suite(void);
#endif