mirror of
https://github.com/ThrowTheSwitch/Unity.git
synced 2026-01-26 09:51:36 +01:00
the test runner generator now has the ability to also output a header file for the tests, which can get pulled into the test itself if desired.
This commit is contained in:
51
test/expectdata/testsample_head1.c
Normal file
51
test/expectdata/testsample_head1.c
Normal file
@@ -0,0 +1,51 @@
|
||||
/* 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()) \
|
||||
{ \
|
||||
setUp(); \
|
||||
TestFunc(); \
|
||||
} \
|
||||
if (TEST_PROTECT() && !TEST_IS_IGNORED) \
|
||||
{ \
|
||||
tearDown(); \
|
||||
} \
|
||||
UnityConcludeTest(); \
|
||||
}
|
||||
|
||||
//=======Automagically Detected Files To Include=====
|
||||
#include "unity.h"
|
||||
#include <setjmp.h>
|
||||
#include <stdio.h>
|
||||
#include "testsample_head1.h"
|
||||
|
||||
//=======External Functions This Runner Calls=====
|
||||
extern void setUp(void);
|
||||
extern void tearDown(void);
|
||||
extern void test_TheFirstThingToTest(void);
|
||||
extern void test_TheSecondThingToTest(void);
|
||||
|
||||
|
||||
//=======Test Reset Option=====
|
||||
void resetTest(void);
|
||||
void resetTest(void)
|
||||
{
|
||||
tearDown();
|
||||
setUp();
|
||||
}
|
||||
|
||||
|
||||
//=======MAIN=====
|
||||
int main(void)
|
||||
{
|
||||
UnityBegin("testdata/testsample.c");
|
||||
RUN_TEST(test_TheFirstThingToTest, 21);
|
||||
RUN_TEST(test_TheSecondThingToTest, 43);
|
||||
|
||||
return (UnityEnd());
|
||||
}
|
||||
12
test/expectdata/testsample_head1.h
Normal file
12
test/expectdata/testsample_head1.h
Normal file
@@ -0,0 +1,12 @@
|
||||
/* AUTOGENERATED FILE. DO NOT EDIT. */
|
||||
#ifndef __B_U_I_L_D__T_E_S_T_S_A_M_P_L_E___H_E_A_D_1__H_
|
||||
#define __B_U_I_L_D__T_E_S_T_S_A_M_P_L_E___H_E_A_D_1__H_
|
||||
|
||||
#include "funky.h"
|
||||
#include "stanky.h"
|
||||
#include <setjmp.h>
|
||||
|
||||
void test_TheFirstThingToTest();
|
||||
void test_TheSecondThingToTest();
|
||||
#endif
|
||||
|
||||
74
test/expectdata/testsample_mock_head1.c
Normal file
74
test/expectdata/testsample_mock_head1.c
Normal file
@@ -0,0 +1,74 @@
|
||||
/* 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++; \
|
||||
CMock_Init(); \
|
||||
if (TEST_PROTECT()) \
|
||||
{ \
|
||||
setUp(); \
|
||||
TestFunc(); \
|
||||
} \
|
||||
if (TEST_PROTECT() && !TEST_IS_IGNORED) \
|
||||
{ \
|
||||
tearDown(); \
|
||||
CMock_Verify(); \
|
||||
} \
|
||||
CMock_Destroy(); \
|
||||
UnityConcludeTest(); \
|
||||
}
|
||||
|
||||
//=======Automagically Detected Files To Include=====
|
||||
#include "unity.h"
|
||||
#include "cmock.h"
|
||||
#include <setjmp.h>
|
||||
#include <stdio.h>
|
||||
#include "testsample_mock_head1.h"
|
||||
#include "Mockstanky.h"
|
||||
|
||||
//=======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();
|
||||
}
|
||||
static void CMock_Verify(void)
|
||||
{
|
||||
Mockstanky_Verify();
|
||||
}
|
||||
static void CMock_Destroy(void)
|
||||
{
|
||||
Mockstanky_Destroy();
|
||||
}
|
||||
|
||||
//=======Test Reset Option=====
|
||||
void resetTest(void);
|
||||
void resetTest(void)
|
||||
{
|
||||
CMock_Verify();
|
||||
CMock_Destroy();
|
||||
tearDown();
|
||||
CMock_Init();
|
||||
setUp();
|
||||
}
|
||||
|
||||
|
||||
//=======MAIN=====
|
||||
int main(void)
|
||||
{
|
||||
UnityBegin("testdata/mocksample.c");
|
||||
RUN_TEST(test_TheFirstThingToTest, 21);
|
||||
RUN_TEST(test_TheSecondThingToTest, 43);
|
||||
|
||||
CMock_Guts_MemFreeFinal();
|
||||
return (UnityEnd());
|
||||
}
|
||||
11
test/expectdata/testsample_mock_head1.h
Normal file
11
test/expectdata/testsample_mock_head1.h
Normal file
@@ -0,0 +1,11 @@
|
||||
/* AUTOGENERATED FILE. DO NOT EDIT. */
|
||||
#ifndef __B_U_I_L_D__T_E_S_T_S_A_M_P_L_E___M_O_C_K___H_E_A_D_1__H_
|
||||
#define __B_U_I_L_D__T_E_S_T_S_A_M_P_L_E___M_O_C_K___H_E_A_D_1__H_
|
||||
|
||||
#include "funky.h"
|
||||
#include <setjmp.h>
|
||||
|
||||
void test_TheFirstThingToTest();
|
||||
void test_TheSecondThingToTest();
|
||||
#endif
|
||||
|
||||
@@ -27,11 +27,11 @@
|
||||
//=======Automagically Detected Files To Include=====
|
||||
#include "unity.h"
|
||||
#include "cmock.h"
|
||||
#include "one.h"
|
||||
#include "two.h"
|
||||
#include <setjmp.h>
|
||||
#include <stdio.h>
|
||||
#include "CException.h"
|
||||
#include "one.h"
|
||||
#include "two.h"
|
||||
#include "funky.h"
|
||||
#include <setjmp.h>
|
||||
#include "Mockstanky.h"
|
||||
|
||||
@@ -27,11 +27,11 @@
|
||||
//=======Automagically Detected Files To Include=====
|
||||
#include "unity.h"
|
||||
#include "cmock.h"
|
||||
#include "one.h"
|
||||
#include "two.h"
|
||||
#include <setjmp.h>
|
||||
#include <stdio.h>
|
||||
#include "CException.h"
|
||||
#include "one.h"
|
||||
#include "two.h"
|
||||
#include "funky.h"
|
||||
#include <setjmp.h>
|
||||
#include "Mockstanky.h"
|
||||
|
||||
@@ -27,12 +27,12 @@
|
||||
//=======Automagically Detected Files To Include=====
|
||||
#include "unity.h"
|
||||
#include "cmock.h"
|
||||
#include "two.h"
|
||||
#include "three.h"
|
||||
#include <four.h>
|
||||
#include <setjmp.h>
|
||||
#include <stdio.h>
|
||||
#include "CException.h"
|
||||
#include "two.h"
|
||||
#include "three.h"
|
||||
#include <four.h>
|
||||
#include "funky.h"
|
||||
#include <setjmp.h>
|
||||
#include "Mockstanky.h"
|
||||
|
||||
@@ -23,11 +23,11 @@
|
||||
|
||||
//=======Automagically Detected Files To Include=====
|
||||
#include "unity.h"
|
||||
#include "one.h"
|
||||
#include "two.h"
|
||||
#include <setjmp.h>
|
||||
#include <stdio.h>
|
||||
#include "CException.h"
|
||||
#include "one.h"
|
||||
#include "two.h"
|
||||
#include "funky.h"
|
||||
#include "stanky.h"
|
||||
#include <setjmp.h>
|
||||
|
||||
@@ -23,11 +23,11 @@
|
||||
|
||||
//=======Automagically Detected Files To Include=====
|
||||
#include "unity.h"
|
||||
#include "one.h"
|
||||
#include "two.h"
|
||||
#include <setjmp.h>
|
||||
#include <stdio.h>
|
||||
#include "CException.h"
|
||||
#include "one.h"
|
||||
#include "two.h"
|
||||
#include "funky.h"
|
||||
#include "stanky.h"
|
||||
#include <setjmp.h>
|
||||
|
||||
@@ -23,12 +23,12 @@
|
||||
|
||||
//=======Automagically Detected Files To Include=====
|
||||
#include "unity.h"
|
||||
#include "two.h"
|
||||
#include "three.h"
|
||||
#include <four.h>
|
||||
#include <setjmp.h>
|
||||
#include <stdio.h>
|
||||
#include "CException.h"
|
||||
#include "two.h"
|
||||
#include "three.h"
|
||||
#include <four.h>
|
||||
#include "funky.h"
|
||||
#include "stanky.h"
|
||||
#include <setjmp.h>
|
||||
|
||||
Reference in New Issue
Block a user