Changeset 6682 for trunk/UNIT_TESTER/README.txt
- Timestamp:
- 03/08/10 11:42:36 (22 months ago)
- Files:
-
- 1 modified
-
trunk/UNIT_TESTER/README.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/UNIT_TESTER/README.txt
r6547 r6682 40 40 Failing tests: 41 41 42 If you have some broken behavior that you cannot fix now, please do NOT leave43 the test as "failing". Instead change TEST_ASSERT into42 If you have some broken behavior that you cannot fix now, please do NOT leave 43 the test as "failing". Instead change TEST_ASSERT into 44 44 45 TEST_ASSERT_BROKEN(failing_condition);45 TEST_ASSERT_BROKEN(failing_condition); 46 46 47 That will print a warning as reminder as long as the condition fails. 48 When the behavior was fixed (so that the condition is fulfilled now), 49 it will abort the test as failed! 50 Just change TEST_ASSERT_BROKEN back into TEST_ASSERT then. 47 That will print a warning as reminder as long as the condition fails. 48 When the behavior was fixed (so that the condition is fulfilled now), 49 it will abort the test as failed! 50 Just change TEST_ASSERT_BROKEN back into TEST_ASSERT then. 51 51 52 52 53 Missing tests: 53 54 54 You may drop a reminder like55 You may drop a reminder like 55 56 56 MISSING_TEST(describe what is missing);57 MISSING_TEST(describe what is missing); 57 58 58 which will appear as warning during test run. 59 which will appear as warning during test run. 60 61 62 Order of tests: 63 64 Tests are executed in the order they appear in the code. 65 Multiple Files are sorted alphabethically. 66 67 Tests with names starting with 'TEST_SLOW_' are executed after 68 all other tests. These are meant to indicate "slow" tests 69 (i.e. tests which need more than a second to execute) 59 70 60 71
