What you mean by test scenario?how can we create?What are the sql query for insert, delete,error the records?

Questions by jaya0280@yahoo.co.in

Showing Answers 1 - 3 of 3 Answers

Ash

  • Jul 25th, 2006
 

A set of test cases that ensure that the business process flows are tested from end to end. They may be independent tests or a series of tests that follow each other, each dependent on the output of the previous one. The terms "test scenario" and "test case" are often used synonymously.

  Was this answer useful?  Yes

test scenario is nothingbut preparation of test cases and executioin of test cases whteher the coding is according to customers requirement or not.

.....................................................................................................

for insert:

select * or <columns> from <tablename> [where <conditon>]

for delete:

delete * or <columns> from <tablename> [where <conditon>]

for insert:

insert tablename values()

 

  Was this answer useful?  Yes

siva sundari

  • Aug 3rd, 2006
 

It is a set of test cases which deals with the complete scenario.It has nothing to do with the Unit/Integration/System testing.U can also write scenario based test cases for the appln u r testing which depicts the flow of data in the appln for a specific tasks.

In our orgn, we have a concept of writing the scenario based test cases when ever we find a bug in the flow of data.ie when u do the exploratory/Adhoc testing u may find some bugs that u were not able to catch up while earlier testing.So these bugs are considered a scenario and a Tc is written for them.

For eg) in case of login there is a bug that u try to login to the appln every 5th time it allows to login with wrong password and if this is identified in adhoc testing a scenario is prepared and TC's are written.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions