/usr/include/CppUTest/Utest.h is in libcpputest-dev 3.4-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 | /*
* Copyright (c) 2007, Michael Feathers, James Grenning and Bas Vodde
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* * Neither the name of the <organization> nor the
* names of its contributors may be used to endorse or promote products
* derived from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE EARLIER MENTIONED AUTHORS ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL <copyright holder> BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
// This file contains the Test class along with the macros which make effective
// in the harness.
#ifndef D_UTest_h
#define D_UTest_h
#include "SimpleString.h"
class TestResult;
class TestPlugin;
class TestFailure;
class TestFilter;
extern bool doubles_equal(double d1, double d2, double threshold);
//////////////////// Utest
class UtestShell;
class Utest
{
public:
Utest();
virtual ~Utest();
virtual void run();
virtual void setup();
virtual void teardown();
virtual void testBody();
};
//////////////////// UtestShell
class UtestShell
{
public:
UtestShell(const char* groupName, const char* testName, const char* fileName,
int lineNumber);
virtual ~UtestShell();
virtual void runOneTestWithPlugins(TestPlugin* plugin, TestResult& result);
virtual SimpleString getFormattedName() const;
virtual UtestShell* addTest(UtestShell* test);
virtual UtestShell *getNext() const;
virtual bool isNull() const;
virtual int countTests();
bool shouldRun(const TestFilter& groupFilter, const TestFilter& nameFilter) const;
const SimpleString getName() const;
const SimpleString getGroup() const;
const SimpleString getFile() const;
int getLineNumber() const;
virtual const char *getProgressIndicator() const;
static TestResult *getTestResult();
static UtestShell *getCurrent();
virtual void assertTrue(bool condition, const char *checkString, const char *conditionString, const char *fileName, int lineNumber);
virtual void assertTrueText(bool condition, const char *checkString, const char *conditionString, const char* text, const char *fileName, int lineNumber);
virtual void assertCstrEqual(const char *expected, const char *actual, const char *fileName, int lineNumber);
virtual void assertCstrNoCaseEqual(const char *expected, const char *actual, const char *fileName, int lineNumber);
virtual void assertCstrContains(const char *expected, const char *actual, const char *fileName, int lineNumber);
virtual void assertCstrNoCaseContains(const char *expected, const char *actual, const char *fileName, int lineNumber);
virtual void assertLongsEqual(long expected, long actual, const char *fileName, int lineNumber);
virtual void assertPointersEqual(const void *expected, const void *actual, const char *fileName, int lineNumber);
virtual void assertDoublesEqual(double expected, double actual, double threshold, const char *fileName, int lineNumber);
virtual void fail(const char *text, const char *fileName, int lineNumber);
virtual void print(const char *text, const char *fileName, int lineNumber);
virtual void print(const SimpleString & text, const char *fileName, int lineNumber);
void setFileName(const char *fileName);
void setLineNumber(int lineNumber);
void setGroupName(const char *groupName);
void setTestName(const char *testName);
virtual void exitCurrentTest();
virtual void exitCurrentTestWithoutException();
static void crash();
static void setCrashMethod(void (*crashme)());
static void resetCrashMethod();
virtual bool isRunInSeperateProcess() const;
virtual void setRunInSeperateProcess();
virtual Utest* createTest();
virtual void destroyTest(Utest* test);
virtual void runOneTest(TestPlugin *plugin, TestResult & result);
protected:
UtestShell();
UtestShell(const char *groupName, const char *testName, const char *fileName, int lineNumber, UtestShell *nextTest);
virtual SimpleString getMacroName() const;
private:
const char *group_;
const char *name_;
const char *file_;
int lineNumber_;
UtestShell *next_;
bool isRunAsSeperateProcess_;
void setTestResult(TestResult* result);
void setCurrentTest(UtestShell* test);
static UtestShell* currentTest_;
static TestResult* testResult_;
void failWith(const TestFailure& failure);
};
//////////////////// NullTest
class NullTestShell: public UtestShell
{
public:
explicit NullTestShell();
explicit NullTestShell(const char* fileName, int lineNumber);
virtual ~NullTestShell();
void testBody();
static NullTestShell& instance();
virtual int countTests();
virtual UtestShell*getNext() const;
virtual bool isNull() const;
private:
NullTestShell(const NullTestShell&);
NullTestShell& operator=(const NullTestShell&);
};
//////////////////// ExecFunctionTest
class ExecFunctionTestShell;
class ExecFunctionTest : public Utest
{
public:
ExecFunctionTest(ExecFunctionTestShell* shell);
void testBody();
virtual void setup();
virtual void teardown();
private:
ExecFunctionTestShell* shell_;
};
//////////////////// ExecFunctionTestShell
class ExecFunctionTestShell: public UtestShell
{
public:
void (*setup_)();
void (*teardown_)();
void (*testFunction_)();
ExecFunctionTestShell(void(*set)() = 0, void(*tear)() = 0) :
UtestShell("Generic", "Generic", "Generic", 1), setup_(set), teardown_(
tear), testFunction_(0)
{
}
Utest* createTest() { return new ExecFunctionTest(this); }
virtual ~ExecFunctionTestShell();
};
//////////////////// CppUTestFailedException
class CppUTestFailedException
{
public:
int dummy_;
};
//////////////////// IgnoredTest
class IgnoredUtestShell : public UtestShell
{
public:
IgnoredUtestShell();
virtual ~IgnoredUtestShell();
explicit IgnoredUtestShell(const char* groupName, const char* testName,
const char* fileName, int lineNumber);
virtual const char* getProgressIndicator() const;
protected: virtual SimpleString getMacroName() const;
virtual void runOneTestWithPlugins(TestPlugin* plugin, TestResult& result);
private:
IgnoredUtestShell(const IgnoredUtestShell&);
IgnoredUtestShell& operator=(const IgnoredUtestShell&);
};
//////////////////// TestInstaller
class TestInstaller
{
public:
explicit TestInstaller(UtestShell& shell, const char* groupName, const char* testName,
const char* fileName, int lineNumber);
virtual ~TestInstaller();
void unDo();
private:
TestInstaller(const TestInstaller&);
TestInstaller& operator=(const TestInstaller&);
};
#endif
|