OSDN Git Service

A ccunit_runBare function was hidden.
authortsutsumi <>
Wed, 24 Sep 2003 11:13:48 +0000 (11:13 +0000)
committertsutsumi <>
Wed, 24 Sep 2003 11:13:48 +0000 (11:13 +0000)
Because it is the function used only with a thing in the package.

src/ccunit/CCUnitTestFixture.c

index 741b943..c08378c 100644 (file)
@@ -108,7 +108,14 @@ inline struct CCUnitTestResult* ccunit_runTestFixture (CCUnitTestFixture* f)
   return result;
 }
 
-void ccunit_runBare (CCUnitTestFixture* fixture, void (*runTest) ())
+/*
+ * Runs the bare test sequence.
+ *
+ * @param testFixture test fixture to run.
+ * @param runTest test run function.
+ * @throws _ccunit_runResult_env by longjmp.
+ */
+void _ccunit_runBare (CCUnitTestFixture* fixture, void (*runTest) ())
 {
   int failure;
   assert (fixture->test.type == ccunitTypeFixture);