Reputation: 29
What is the difference in writing test cases and writing Sanity test cases for sign up of any website? Could anyone please let me understand by giving few test cases or example of Sanity test cases for sign up page of any website?
Upvotes: 0
Views: 6327
Reputation: 111
Every software testing services company follow the process of creating test cases before starting the feature testing. Sanity Testing is done when as a QA we do not have sufficient time to run all the test cases. Sanity test should be done only if QA team is running short of time, never use this for regular releases. Theoretically, this testing is a subset of Regression Testing.
Sanity test cases for validating Sign Up functionality quickly:
Regression test cases for 'Sign Up' form cover some other areas also:
Upvotes: 1
Reputation: 176
For an example, you wanna buy new car.
So when you are taking Test Drive that is called your Sanity Check
After one year of using that Car, When you are sharing your experience, that's called Detail Test
So Sanity check is basically overall check of all the links and UI, where Details Test cases are checking each and everything about the page with Negative and Positive Scenarios.
Upvotes: 1
Reputation: 11
Sanity test in first to check sin up function. TO check validation all field. To check the sin up button on click work is yes and no. TO all field enter After the submit button on click that time check cress. To submit button on click direct home page to check.
Upvotes: 0
Reputation: 34
For sanity testing , Just need to check straight forward flow of application whether it is working or not. Sanity testing give confidence to team that some of direct error, Exception not getting on Work flow.
Upvotes: 1
Reputation: 106
Sanity tests by name suggests the case that validate if the application is sane. For example in context of sign up of a website, you may have the following tests as sanity:
The above are more then enough for a sanity test. But for detailed testing you may include following tests in addition to the above one.
Upvotes: 4
Reputation: 5042
Sanity tests are done to check quickly whether application is behaving properly or not. It should not be very time consuming testing and is done in quick manner when you do not have enough time for testing.
Sanity tests does not have any specific tests cases and mostly done without test cases.
Upvotes: 1