1
0
mirror of https://github.com/ThrowTheSwitch/Unity.git synced 2026-01-27 02:11:36 +01:00

- caught up runner generator script tests

git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@105 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
This commit is contained in:
mvandervoord
2010-11-26 22:27:37 +00:00
parent 780c17d017
commit 962ce941df
18 changed files with 546 additions and 276 deletions

View File

@@ -1,4 +1,30 @@
/* AUTOGENERATED FILE. DO NOT EDIT. */
//=======Test Runner Used To Run Each Test Below=====
#define RUN_TEST(TestFunc, TestLineNum) \
{ \
Unity.CurrentTestName = #TestFunc; \
Unity.CurrentTestLineNumber = TestLineNum; \
Unity.NumberOfTests++; \
if (TEST_PROTECT()) \
{ \
CEXCEPTION_T e; \
Try { \
CMock_Init(); \
setUp(); \
TestFunc(); \
CMock_Verify(); \
} Catch(e) { TEST_ASSERT_EQUAL_HEX32_MESSAGE(CEXCEPTION_NONE, e, "Unhandled Exception!"); } \
} \
CMock_Destroy(); \
if (TEST_PROTECT() && !TEST_IS_IGNORED) \
{ \
tearDown(); \
} \
UnityConcludeTest(); \
}
//=======Automagically Detected Files To Include=====
#include "unity.h"
#include "cmock.h"
#include <setjmp.h>
@@ -6,14 +32,14 @@
#include "CException.h"
#include "Mockstanky.h"
char MessageBuffer[50];
//=======External Functions This Runner Calls=====
extern void setUp(void);
extern void tearDown(void);
extern void test_TheFirstThingToTest(void);
extern void test_TheSecondThingToTest(void);
//=======Mock Management=====
static void CMock_Init(void)
{
Mockstanky_Init();
@@ -26,24 +52,8 @@ static void CMock_Destroy(void)
{
Mockstanky_Destroy();
}
static void runTest(UnityTestFunction test)
{
if (TEST_PROTECT())
{
CEXCEPTION_T e;
Try {
CMock_Init();
setUp();
test();
CMock_Verify();
} Catch(e) { TEST_ASSERT_EQUAL_HEX32_MESSAGE(CEXCEPTION_NONE, e, "Unhandled Exception!"); }
}
CMock_Destroy();
if (TEST_PROTECT() && !TEST_IS_IGNORED)
{
tearDown();
}
}
//=======Test Reset Option=====
void resetTest()
{
CMock_Verify();
@@ -54,12 +64,11 @@ void resetTest()
}
//=======MAIN=====
int main(void)
{
Unity.TestFile = "test/testdata/mocksample.c";
UnityBegin();
// RUN_TEST calls runTest
RUN_TEST(test_TheFirstThingToTest, 21);
RUN_TEST(test_TheSecondThingToTest, 43);