extern "C"
{
    #include "Flash.h"
}

#include "CppUTest/TestHarness.h"

TEST_GROUP(Flash)
{
    void setup()
    {
        Flash_Create();
    }

    void teardown()
    {
        Flash_Destroy();
    }
};

TEST(Flash, test1)
{
    LONGS_EQUAL(Flash_OK, Flash_Program(100, 4242));
}
