joey shelton / LED_Demo

Dependencies:   MAX44000 PWM_Tone_Library nexpaq_mdk

Fork of LED_Demo by Maxim nexpaq

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers sn_coap_parsertest.cpp Source File

sn_coap_parsertest.cpp

00001 /*
00002  * Copyright (c) 2015 ARM. All rights reserved.
00003  */
00004 #include "CppUTest/TestHarness.h"
00005 #include "test_sn_coap_parser.h"
00006 
00007 TEST_GROUP(sn_coap_parser)
00008 {
00009     void setup()
00010     {
00011     }
00012 
00013     void teardown()
00014     {
00015     }
00016 };
00017 
00018 TEST(sn_coap_parser, test_sn_coap_parser)
00019 {
00020     CHECK(test_sn_coap_parser());
00021 }
00022 
00023 TEST(sn_coap_parser, test_sn_coap_parser_options_parsing)
00024 {
00025     CHECK(test_sn_coap_parser_options_parsing());
00026 }
00027 
00028 TEST(sn_coap_parser, test_sn_coap_parser_options_parsing_switches)
00029 {
00030     CHECK(test_sn_coap_parser_options_parsing_switches());
00031 }
00032 
00033 TEST(sn_coap_parser, test_sn_coap_parser_options_count_needed_memory_multiple_option)
00034 {
00035     CHECK(test_sn_coap_parser_options_count_needed_memory_multiple_option());
00036 }
00037 
00038 TEST(sn_coap_parser, test_sn_coap_parser_options_parse_multiple_options)
00039 {
00040     CHECK(test_sn_coap_parser_options_parse_multiple_options());
00041 }
00042 
00043 TEST(sn_coap_parser, test_sn_coap_parser_parsing)
00044 {
00045     CHECK(test_sn_coap_parser_parsing());
00046 }
00047 
00048 TEST(sn_coap_parser, test_sn_coap_parser_release_allocated_coap_msg_mem)
00049 {
00050     CHECK(test_sn_coap_parser_release_allocated_coap_msg_mem());
00051 }