Lines Matching full:test
2 Unity Project - A Test Framework for C
26 * Test Setup / Teardown
29 /* These functions are intended to be called before and after each test.
30 * If using unity directly, these will need to be provided for each test
31 * executable built. If you are using the test runner generator and/or
37 * entire test suite. suiteTearDown() is passed the number of tests that
40 * If using Ceedling or the test runner generator, these will be called
46 * Test Reset and Verify
50 * to support complex test loops, etc. Both are NOT built into Unity. Instead
51 * the test runner generator will create them. resetTest will run teardown and
52 * setup again, verifying any end-of-test needs between. verifyTest will only
84 …* - define UNITY_DIFFERENTIATE_FINAL_FAIL to print FAILED (vs. FAIL) at test end summary - for…
88 …* - by default, test and failure counters are unsigned shorts. Define UNITY_COUNTER_TYPE with…
90 * Test Cases
97 …* - you'll want to define UNITY_USE_COMMAND_LINE_ARGS if you have the test runner passing argu…
114 …* This method allows you to abort a test immediately with a PASS state, ignoring the remainder of …
119 …* which files should be linked to in order to perform a test. Use it like TEST_FILE("sandwiches.c"…
123 * Test Asserts (simple)
391 * Test Asserts (with additional messages)