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

- added tests for generate_test_runner. other script tests to come

git-svn-id: http://unity.svn.sourceforge.net/svnroot/unity/trunk@97 e7d17a6e-8845-0410-bbbc-c8efb4fdad7e
This commit is contained in:
mvandervoord
2010-09-23 02:39:15 +00:00
parent 1f643e8661
commit 33fa00d518
21 changed files with 1054 additions and 32 deletions

View File

@@ -0,0 +1,72 @@
/* AUTOGENERATED FILE. DO NOT EDIT. */
#include "unity.h"
#include "cmock.h"
#include <setjmp.h>
#include <stdio.h>
#include "Mockstanky.h"
char MessageBuffer[50];
extern void setUp(void);
extern void tearDown(void);
extern void test_TheFirstThingToTest(void);
extern void test_TheSecondThingToTest(void);
static void CMock_Init(void)
{
Mockstanky_Init();
}
static void CMock_Verify(void)
{
Mockstanky_Verify();
}
static void CMock_Destroy(void)
{
Mockstanky_Destroy();
}
static int suite_setup(void)
{
a_custom_setup();
}
static int suite_teardown(int num_failures)
{
a_custom_teardown();
}
static void runTest(UnityTestFunction test)
{
if (TEST_PROTECT())
{
CMock_Init();
setUp();
test();
CMock_Verify();
}
CMock_Destroy();
if (TEST_PROTECT() && !TEST_IS_IGNORED)
{
tearDown();
}
}
void resetTest()
{
CMock_Verify();
CMock_Destroy();
tearDown();
CMock_Init();
setUp();
}
int main(void)
{
suite_setup();
Unity.TestFile = "test/testdata/mocksample.c";
UnityBegin();
// RUN_TEST calls runTest
RUN_TEST(test_TheFirstThingToTest, 21);
RUN_TEST(test_TheSecondThingToTest, 43);
return suite_teardown(UnityEnd());
}