this is a class for unit testing

Dependents:   OS

This is an UnitTest library. You can use for POST.

UnitTest.h

Committer:
sPymbed
Date:
2017-11-01
Revision:
0:b8a9485ea4f3
Child:
1:652e6df36e5d

File content as of revision 0:b8a9485ea4f3:

#ifndef UnitTest_h
#define UnitTest_h

#include "mbed.h"

class UnitTest
{
    private:
        Timer unitTest;
        unsigned int testCount;
    
    public:
        void start();
        void end();
        void assert(int, int);
};

#endif