Add to and improve upon the DIAL server unit tests.

This commit is contained in:
Wesley Miaw
2019-10-07 14:39:00 -07:00
parent 96786e4545
commit 45477e443e
13 changed files with 477 additions and 176 deletions

View File

@@ -22,6 +22,7 @@
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "test_callbacks.h"
#include "test_dial_data.h"
#include "test_url_lib.h"
@@ -29,14 +30,8 @@
int main(int argc, char** argv) {
printf("====\n");
test_smartstrcat();
test_urldecode();
test_parse_app_name();
test_parse_params();
printf("====\n");
test_read_dial_data();
test_write_dial_data();
printf("====\n");
return 0;
test_dial_data_suite();
test_url_lib_suite();
test_callbacks_suite();
return 0;
}