Changes between Version 18 and Version 19 of DeveloperGuidelines/Testing/EdenTest/WriteTestcase


Ignore:
Timestamp:
01/23/15 00:40:44 (10 years ago)
Author:
anirudh.tiwari
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/Testing/EdenTest/WriteTestcase

    v18 v19  
    107107This would fail/pass depending wether the query is true or false.
    108108
    109 === Database Rollback ===
    110 To be implemented
     109=== Tests Repeatability ===
     110Tests are made repeatable by executing the following steps in order:
     111
     1121. A copy of the database is made during the test build as the original database might change while the test runs.
     1132. The original database is restored from the copy during the test tear down, thus making the tests repeatable.
     114
     115Note: The test repeatability flag is off by default and can be turned on in the 000_config.py file. Also, the repeatability feature is currently only implemented for sqlite and postgres database.
    111116
    112117=== Deliver traceback of internal error pages ===
     
    116121
    117122Please see the article [http://eden.sahanafoundation.org/wiki/DeveloperGuidelines/Testing/EdenTest/WriteTestcase/Advanced Advanced Test Design].
    118