Saltware / Mbed 2 deprecated Water Play

Dependencies:   mbed DRV88255 TextLCD Ping mbed-rtos

testing.h

Committer:
sbouber1
Date:
2016-06-13
Revision:
22:4b5bf1c2e1ff
Parent:
19:ee89eabe1fa2
Child:
30:cf12566013a5

File content as of revision 22:4b5bf1c2e1ff:

#ifndef __TESTING_H__
#define __TESTING_H__


// #define RUN_TESTS

#ifdef RUN_TESTS
#define MAIN test_main
#else
#define MAIN real_main
#endif

#define MOCK(N, F) static inline float N(int i,int t) {return (F);}

#define DEF_MOCKS(A,B,C) MockSensorController temp(false,0,A); \
    MockSensorController salt(false,0,B); \
    MockSensorController prox(false,0,C);

#include "mbed.h"

class TestCase {

    public:
        TestCase(const char *name, bool (*evaluate)(TestCase *tc)) {
            this->name = name;
            this->evaluate = evaluate;
            this->failed = false;
            
            if(!failed && this->evaluate(this)) {
                printf("TESTCASE %s PASSED!\r\n", this->name);
            } else {
                printf("TESTCASE %s FAILED!\r\n", this->name);    
            }
        }
        
        void assertTrue(bool b, const char *error);
    
    
    private:
        const char *name;
        bool failed;
        bool (*evaluate)(TestCase *tc);
    
};

#endif