xx.إѡޥλȤ

	EMB_UNIT_TESTCASE(ca,name,sup,run,tdw)
	TestCase֥Ȥޤ
	TestCase֥Ȥconst֥ȤȤޤ
	ca	- ֥̾
	name- ƥ̾
	sup	- ؿ
	tdw	- ؿ
	run	- ƥȴؿ
	ex.)
		void setUp(){
			...
		}
		void tearDown(void) {
			...
		}
		void testSample(void) {
			...
		}
		EMB_UNIT_TESTCASE(SampleCase,"SampleCase",setUp,tearDown,testSample)


	new_TestFixture(name,test)
	TestFixture֥Ȥޤ
	name	- ƥ̾
	test	- ƥȴؿ
	return	- TestFixture
	ex.)
		void testSample(void) {
			...
		}
		TestFixture fix = new_TestFixture("testSample",testSample);


	EMB_UNIT_TESTFIXTURES(fixtures)
	TestCallerɬפTestFixture(ƥȴؿ)ޤ
	const֥ȤȤޤ
	EMB_UNIT_TESTFIXTURESTestCallerɬפTestFixture뤿˻Ȥޤ
	fixtures- ̾
	ex.)
		void testSample00(void) {
			...
		}
		void testSample01(void) {
			...
		}
		EMB_UNIT_TESTFIXTURES(samplefixtures) {
			new_TestFixture("testSample00", testSample00),
			new_TestFixture("testSample01", testSample01),
		};


	EMB_UNIT_TESTCALLER(caller,name,sup,tdw,fixtures)
	TestCaller֥Ȥޤ
	TestCaller֥Ȥconst֥ȤȤޤ
	caller	- ֥̾
	name	- ƥ̾
	sup		- Fixture̻ؿ
	tdw		- Fixture̻ؿ
	fixtures- TestFixture(ƥȴؿ)
	ex.)
		void setUp(){
		}
		void tearDown(void) {
			...
		}
		void testSample00(void) {
			...
		}
		void testSample01(void) {
			...
		}
		void testSample02(void) {
			...
		}
		EMB_UNIT_TESTFIXTURES(samplefixtures) {
			new_TestFixture("testSample00", testSample00),
			new_TestFixture("testSample01", testSample01),
			new_TestFixture("testSample02", testSample02),
		};
		/* TestCallerȤäʣΥƥȤ򣱤ĤˤޤȤ᤿硢setUp, tearDownؿƥ˸ƤФ.*/
		EMB_UNIT_TESTCALLER(samplecaller, "samplecaller", setUp, tearDown, samplefixtures);


