Show
Ignore:
Timestamp:
03/08/10 11:42:36 (22 months ago)
Author:
westram
Message:
  • execute "slow" tests after other tests
  • flagged save/load DB test as slow
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/UNIT_TESTER/README.txt

    r6547 r6682  
    4040   Failing tests: 
    4141 
    42           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 
     42      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 
    4444 
    45               TEST_ASSERT_BROKEN(failing_condition); 
     45          TEST_ASSERT_BROKEN(failing_condition); 
    4646 
    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 
    5152 
    5253   Missing tests: 
    5354 
    54            You may drop a reminder like 
     55      You may drop a reminder like 
    5556 
    56                MISSING_TEST(describe what is missing); 
     57          MISSING_TEST(describe what is missing); 
    5758 
    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) 
    5970 
    6071