-----------------------------------------------*/
| 2219 | |
| 2220 | /*-----------------------------------------------*/ |
| 2221 | void UnityBegin(const char* filename) |
| 2222 | { |
| 2223 | Unity.TestFile = filename; |
| 2224 | Unity.CurrentTestName = NULL; |
| 2225 | Unity.CurrentTestLineNumber = 0; |
| 2226 | Unity.NumberOfTests = 0; |
| 2227 | Unity.TestFailures = 0; |
| 2228 | Unity.TestIgnores = 0; |
| 2229 | Unity.CurrentTestFailed = 0; |
| 2230 | Unity.CurrentTestIgnored = 0; |
| 2231 | |
| 2232 | UNITY_CLR_DETAILS(); |
| 2233 | UNITY_OUTPUT_START(); |
| 2234 | } |
| 2235 | |
| 2236 | /*-----------------------------------------------*/ |
| 2237 | int UnityEnd(void) |