Skip to content

File test_notation_plpath.c

File List > note-plpath > test > test_notation_plpath.c

Go to the documentation of this file

#include "notation_plpath.h"
#include "unity.h"
#include "utils/utils.h"
#include "tests/decode/positive_tests.h"
#include "tests/decode/negative_tests.h"
#include "tests/encode/positive_tests.h"
#include "tests/encode/negative_tests.h"
#include "tests/turn_around_test.h"
/******************************************************************************/
/*******************************Untested Frameworks****************************/
/******************************************************************************/

/******************************************************************************/
/*******************************Test Data**************************************/
/******************************************************************************/
/* clang-format off */

/* clang-format on */
/******************************************************************************/
/*******************************Test prep**************************************/
/******************************************************************************/

void setUp(void)
{
}

void tearDown(void)
{
}

/******************************************************************************/
/*******************************Test cases*************************************/
/******************************************************************************/

/******************************************************************************/
/*******************************Test main**************************************/
/******************************************************************************/
int main(void)
{
    UNITY_BEGIN();

    test_decode_positive();
    test_decode_negative();
    test_encode_positive();
    test_encode_negative();
    test_turn_around();

    return UNITY_END();
}