-
Notifications
You must be signed in to change notification settings - Fork 12
Limitations and Assumptions
Aasawaree Deshmukh edited this page Aug 28, 2013
·
3 revisions
- To upload data:
- Uploaded file should always be in a zip format.
- The zip will always contain the appropriate files for parsing (i.e. Junit files in .xml format).
- For the fields, any character can be entered with a length limit of 255 characters.
- All the fields are mandatory.
- The form (all the parameters together) can’t be similar to any previously submitted form.
- Date field is in string format.
- To perform comparative analysis
- You choose an end date greater than the start date.
- To view the test pyramid
- You don’t have two sub-projects of the same name.
- If error message not displayed in expected format
- This may be because of extra quotes in the error message . We have fixed this in the parser, however to clean up the old data , run the following query once against your TTA database ->
update test_case_records SET error_msg = replace(error_msg,'\"' ,'\'') where error_msg <> "";
- This may be because of extra quotes in the error message . We have fixed this in the parser, however to clean up the old data , run the following query once against your TTA database ->