Unit Testing framework based on http://cpputest.github.io/

CppUTest

Where to find more information

Getting test reports on the console

You may need to tailor the file src/Platforms/mbed/UtestPlatform.cpp to your needs. In particular, if you want console output, you might want to look at the function PlatformSpecificPutchar().

Quick introduction (some code!)

To write your first test, all you need is a new cpp file with a TEST_GROUP and a TEST, like:

#include "CppUTest/TestHarness.h"

TEST_GROUP(FirstTestGroup)
{
};

TEST(FirstTestGroup, FirstTest)
{
   FAIL("Fail me!");
}

This test will fail.

You can add new tests to the test group by just writing more tests in the file, like this:

TEST(FirstTestGroup, SecondTest)
{
   STRCMP_EQUAL("hello", "world");
   LONGS_EQUAL(1, 2);
   CHECK(false);
}

You do need to trigger the tests from somewhere in your program. It could look something like:

#include "CppUTest/TestRegistry.h"
#include "CppUTest/CommandLineTestRunner.h"

int main(int ac, char** av)
{
    ....
    unsigned failureCount = 0;
    {
        ConsoleTestOutput output;
        CommandLineTestRunner runner(ac, av, &output, TestRegistry::getCurrentRegistry());
        failureCount = runner.runAllTestsMain();
    }

    if (failureCount == 0) {
        console.printf("PASSED\r\n");
    }
    ...
}

For more information, We’d recommend to read the manual or, even better, check some existing tests such as SimpleStringTest or (a bit more complicated) MemoryLeakDetectorTest or the mocking tests or just check out the Cheat Sheet.

Committer:
rgrover1
Date:
Tue Jan 28 09:27:41 2014 +0000
Revision:
0:0b799af9d58e
Child:
1:4769360130ed
CppUTest unit test framework.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
rgrover1 0:0b799af9d58e 1 /*
rgrover1 0:0b799af9d58e 2 * Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde
rgrover1 0:0b799af9d58e 3 * All rights reserved.
rgrover1 0:0b799af9d58e 4 *
rgrover1 0:0b799af9d58e 5 * Redistribution and use in source and binary forms, with or without
rgrover1 0:0b799af9d58e 6 * modification, are permitted provided that the following conditions are met:
rgrover1 0:0b799af9d58e 7 * * Redistributions of source code must retain the above copyright
rgrover1 0:0b799af9d58e 8 * notice, this list of conditions and the following disclaimer.
rgrover1 0:0b799af9d58e 9 * * Redistributions in binary form must reproduce the above copyright
rgrover1 0:0b799af9d58e 10 * notice, this list of conditions and the following disclaimer in the
rgrover1 0:0b799af9d58e 11 * documentation and/or other materials provided with the distribution.
rgrover1 0:0b799af9d58e 12 * * Neither the name of the <organization> nor the
rgrover1 0:0b799af9d58e 13 * names of its contributors may be used to endorse or promote products
rgrover1 0:0b799af9d58e 14 * derived from this software without specific prior written permission.
rgrover1 0:0b799af9d58e 15 *
rgrover1 0:0b799af9d58e 16 * THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY
rgrover1 0:0b799af9d58e 17 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
rgrover1 0:0b799af9d58e 18 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
rgrover1 0:0b799af9d58e 19 * DISCLAIMED. IN NO EVENT SHALL <copyright holder> BE LIABLE FOR ANY
rgrover1 0:0b799af9d58e 20 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
rgrover1 0:0b799af9d58e 21 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
rgrover1 0:0b799af9d58e 22 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
rgrover1 0:0b799af9d58e 23 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
rgrover1 0:0b799af9d58e 24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
rgrover1 0:0b799af9d58e 25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
rgrover1 0:0b799af9d58e 26 */
rgrover1 0:0b799af9d58e 27
rgrover1 0:0b799af9d58e 28 #include "CppUTest/TestHarness.h"
rgrover1 0:0b799af9d58e 29 #include "CppUTest/MemoryLeakDetector.h"
rgrover1 0:0b799af9d58e 30 #include "CppUTest/TestMemoryAllocator.h"
rgrover1 0:0b799af9d58e 31 #include "CppUTest/PlatformSpecificFunctions.h"
rgrover1 0:0b799af9d58e 32 #include "CppUTest/TestHarness_c.h"
rgrover1 0:0b799af9d58e 33
rgrover1 0:0b799af9d58e 34 extern "C"
rgrover1 0:0b799af9d58e 35 {
rgrover1 0:0b799af9d58e 36
rgrover1 0:0b799af9d58e 37
rgrover1 0:0b799af9d58e 38 void CHECK_EQUAL_C_INT_LOCATION(int expected, int actual, const char* fileName, int lineNumber)
rgrover1 0:0b799af9d58e 39 {
rgrover1 0:0b799af9d58e 40 UtestShell::getCurrent()->assertLongsEqual((long)expected, (long)actual, fileName, lineNumber, TestTerminatorWithoutExceptions());
rgrover1 0:0b799af9d58e 41 }
rgrover1 0:0b799af9d58e 42
rgrover1 0:0b799af9d58e 43 void CHECK_EQUAL_C_REAL_LOCATION(double expected, double actual, double threshold, const char* fileName, int lineNumber)
rgrover1 0:0b799af9d58e 44 {
rgrover1 0:0b799af9d58e 45 UtestShell::getCurrent()->assertDoublesEqual(expected, actual, threshold, fileName, lineNumber, TestTerminatorWithoutExceptions());
rgrover1 0:0b799af9d58e 46 }
rgrover1 0:0b799af9d58e 47
rgrover1 0:0b799af9d58e 48 void CHECK_EQUAL_C_CHAR_LOCATION(char expected, char actual, const char* fileName, int lineNumber)
rgrover1 0:0b799af9d58e 49 {
rgrover1 0:0b799af9d58e 50 UtestShell::getCurrent()->assertEquals(((expected) != (actual)), StringFrom(expected).asCharString(), StringFrom(actual).asCharString(), fileName, lineNumber, TestTerminatorWithoutExceptions());
rgrover1 0:0b799af9d58e 51 }
rgrover1 0:0b799af9d58e 52
rgrover1 0:0b799af9d58e 53 void CHECK_EQUAL_C_STRING_LOCATION(const char* expected, const char* actual, const char* fileName, int lineNumber)
rgrover1 0:0b799af9d58e 54 {
rgrover1 0:0b799af9d58e 55 UtestShell::getCurrent()->assertCstrEqual(expected, actual, fileName, lineNumber, TestTerminatorWithoutExceptions());
rgrover1 0:0b799af9d58e 56 }
rgrover1 0:0b799af9d58e 57
rgrover1 0:0b799af9d58e 58 void FAIL_TEXT_C_LOCATION(const char* text, const char* fileName, int lineNumber)
rgrover1 0:0b799af9d58e 59 {
rgrover1 0:0b799af9d58e 60 UtestShell::getCurrent()->fail(text, fileName, lineNumber, TestTerminatorWithoutExceptions());
rgrover1 0:0b799af9d58e 61 }
rgrover1 0:0b799af9d58e 62
rgrover1 0:0b799af9d58e 63 void FAIL_C_LOCATION(const char* fileName, int lineNumber)
rgrover1 0:0b799af9d58e 64 {
rgrover1 0:0b799af9d58e 65 UtestShell::getCurrent()->fail("", fileName, lineNumber, TestTerminatorWithoutExceptions());
rgrover1 0:0b799af9d58e 66 }
rgrover1 0:0b799af9d58e 67
rgrover1 0:0b799af9d58e 68 void CHECK_C_LOCATION(int condition, const char* conditionString, const char* fileName, int lineNumber)
rgrover1 0:0b799af9d58e 69 {
rgrover1 0:0b799af9d58e 70 UtestShell::getCurrent()->assertTrue(condition != 0, "CHECK_C", conditionString, fileName, lineNumber, TestTerminatorWithoutExceptions());
rgrover1 0:0b799af9d58e 71 }
rgrover1 0:0b799af9d58e 72
rgrover1 0:0b799af9d58e 73 enum { NO_COUNTDOWN = -1, OUT_OF_MEMORRY = 0 };
rgrover1 0:0b799af9d58e 74 static int malloc_out_of_memory_counter = NO_COUNTDOWN;
rgrover1 0:0b799af9d58e 75 static int malloc_count = 0;
rgrover1 0:0b799af9d58e 76
rgrover1 0:0b799af9d58e 77 void cpputest_malloc_count_reset(void)
rgrover1 0:0b799af9d58e 78 {
rgrover1 0:0b799af9d58e 79 malloc_count = 0;
rgrover1 0:0b799af9d58e 80 }
rgrover1 0:0b799af9d58e 81
rgrover1 0:0b799af9d58e 82 int cpputest_malloc_get_count()
rgrover1 0:0b799af9d58e 83 {
rgrover1 0:0b799af9d58e 84 return malloc_count;
rgrover1 0:0b799af9d58e 85 }
rgrover1 0:0b799af9d58e 86
rgrover1 0:0b799af9d58e 87 void cpputest_malloc_set_out_of_memory()
rgrover1 0:0b799af9d58e 88 {
rgrover1 0:0b799af9d58e 89 setCurrentMallocAllocator(NullUnknownAllocator::defaultAllocator());
rgrover1 0:0b799af9d58e 90 }
rgrover1 0:0b799af9d58e 91
rgrover1 0:0b799af9d58e 92 void cpputest_malloc_set_not_out_of_memory()
rgrover1 0:0b799af9d58e 93 {
rgrover1 0:0b799af9d58e 94 malloc_out_of_memory_counter = NO_COUNTDOWN;
rgrover1 0:0b799af9d58e 95 setCurrentMallocAllocatorToDefault();
rgrover1 0:0b799af9d58e 96 }
rgrover1 0:0b799af9d58e 97
rgrover1 0:0b799af9d58e 98 void cpputest_malloc_set_out_of_memory_countdown(int count)
rgrover1 0:0b799af9d58e 99 {
rgrover1 0:0b799af9d58e 100 malloc_out_of_memory_counter = count;
rgrover1 0:0b799af9d58e 101 if (malloc_out_of_memory_counter == OUT_OF_MEMORRY)
rgrover1 0:0b799af9d58e 102 cpputest_malloc_set_out_of_memory();
rgrover1 0:0b799af9d58e 103 }
rgrover1 0:0b799af9d58e 104
rgrover1 0:0b799af9d58e 105 void* cpputest_malloc(size_t size)
rgrover1 0:0b799af9d58e 106 {
rgrover1 0:0b799af9d58e 107 return cpputest_malloc_location(size, "<unknown>", 0);
rgrover1 0:0b799af9d58e 108 }
rgrover1 0:0b799af9d58e 109
rgrover1 0:0b799af9d58e 110 void* cpputest_calloc(size_t num, size_t size)
rgrover1 0:0b799af9d58e 111 {
rgrover1 0:0b799af9d58e 112 return cpputest_calloc_location(num, size, "<unknown>", 0);
rgrover1 0:0b799af9d58e 113 }
rgrover1 0:0b799af9d58e 114
rgrover1 0:0b799af9d58e 115 void* cpputest_realloc(void* ptr, size_t size)
rgrover1 0:0b799af9d58e 116 {
rgrover1 0:0b799af9d58e 117 return cpputest_realloc_location(ptr, size, "<unknown>", 0);
rgrover1 0:0b799af9d58e 118 }
rgrover1 0:0b799af9d58e 119
rgrover1 0:0b799af9d58e 120 void cpputest_free(void* buffer)
rgrover1 0:0b799af9d58e 121 {
rgrover1 0:0b799af9d58e 122 cpputest_free_location(buffer, "<unknown>", 0);
rgrover1 0:0b799af9d58e 123 }
rgrover1 0:0b799af9d58e 124
rgrover1 0:0b799af9d58e 125 static void countdown()
rgrover1 0:0b799af9d58e 126 {
rgrover1 0:0b799af9d58e 127 if (malloc_out_of_memory_counter <= NO_COUNTDOWN)
rgrover1 0:0b799af9d58e 128 return;
rgrover1 0:0b799af9d58e 129
rgrover1 0:0b799af9d58e 130 if (malloc_out_of_memory_counter == OUT_OF_MEMORRY)
rgrover1 0:0b799af9d58e 131 return;
rgrover1 0:0b799af9d58e 132
rgrover1 0:0b799af9d58e 133 malloc_out_of_memory_counter--;
rgrover1 0:0b799af9d58e 134
rgrover1 0:0b799af9d58e 135 if (malloc_out_of_memory_counter == OUT_OF_MEMORRY)
rgrover1 0:0b799af9d58e 136 cpputest_malloc_set_out_of_memory();
rgrover1 0:0b799af9d58e 137 }
rgrover1 0:0b799af9d58e 138
rgrover1 0:0b799af9d58e 139 void* cpputest_malloc_location(size_t size, const char* file, int line)
rgrover1 0:0b799af9d58e 140 {
rgrover1 0:0b799af9d58e 141 countdown();
rgrover1 0:0b799af9d58e 142 malloc_count++;
rgrover1 0:0b799af9d58e 143 return cpputest_malloc_location_with_leak_detection(size, file, line);
rgrover1 0:0b799af9d58e 144 }
rgrover1 0:0b799af9d58e 145
rgrover1 0:0b799af9d58e 146 void* cpputest_calloc_location(size_t num, size_t size, const char* file, int line)
rgrover1 0:0b799af9d58e 147 {
rgrover1 0:0b799af9d58e 148 void* mem = cpputest_malloc_location(num * size, file, line);
rgrover1 0:0b799af9d58e 149 if (mem)
rgrover1 0:0b799af9d58e 150 PlatformSpecificMemset(mem, 0, num*size);
rgrover1 0:0b799af9d58e 151 return mem;
rgrover1 0:0b799af9d58e 152 }
rgrover1 0:0b799af9d58e 153
rgrover1 0:0b799af9d58e 154 void* cpputest_realloc_location(void* memory, size_t size, const char* file, int line)
rgrover1 0:0b799af9d58e 155 {
rgrover1 0:0b799af9d58e 156 return cpputest_realloc_location_with_leak_detection(memory, size, file, line);
rgrover1 0:0b799af9d58e 157 }
rgrover1 0:0b799af9d58e 158
rgrover1 0:0b799af9d58e 159 void cpputest_free_location(void* buffer, const char* file, int line)
rgrover1 0:0b799af9d58e 160 {
rgrover1 0:0b799af9d58e 161 cpputest_free_location_with_leak_detection(buffer, file, line);
rgrover1 0:0b799af9d58e 162 }
rgrover1 0:0b799af9d58e 163
rgrover1 0:0b799af9d58e 164 }