100 test scenario for gmail in integration testing
#1

100 test scenario for gmail in integration testing
100 test scenario for gmail in integration testing







100 test scenario for gmail in integration testing

Scenario 1 – Login as A to amount transfer – send 100rs amount – message should be displayed saying ‘amount transfer successful’ – now logout as A and login as B – go to amount balance and check balance – balance is increased by 100rs – thus integration test is successful.

Scenario 2 – also we check if amount balance has decreased by 100rs in A

Scenario 3 – click on transactions – in A and B, message should be displayed regarding the data and time of amount transfer

Thus in Integration Testing, we must remember the following points,

1) Understand the application thoroughly i.e, understand how each and every feature works. Also understand how each and every feature are related or linked to each other.
2) Identify all possible scenarios
3) Prioritize all the scenarios for execution
4) Test all the scenarios
5) If you find defects, communicate defect report to developers
6) Do positive and negative integration testing. Positive – if there is total balance of 10,000 – send 1000rs and see if amount transfer works fine – if it does, then test is pass. Negative – if there is total balance of 10,000 – send 15000rs and see if amount transfer happens – if it doesn’t happen, test is pass – if it happens, then there is a bug in the program and send it to development team for repairing defects.

Let us consider gmail software as shown above. We first do functional testing for username and password and submit and cancel button. Then we do integration testing for the above. The following scenarios can be considered,

Scenario 1 – Login as A and click on compose mail. We then do functional testing for the individual fields. Now we click on send and also check for save drafts. After we send mail to B, we should check in the sent items folder of A to see if the sent mail is there. Now we logout as A and login as B. Go to inbox and check if the mail has arrived.

Scenario 2 – we also do integration testing for spam folders. If the particular contact has been marked as spam, then any mail sent by that user should go to spam folder and not to the inbox.
We also do functional testing for each and every feature like – inbox,sent items etc .

Let us consider the figure shown above.
We first do functional testing for all the text fields and each and every feature. Then we do integration testing for the related features. We first test for add user and list user and delete user and then edit user and also search user.

Points to remember,
1) There are features we might be doing only doing functional testing and there are features we might be doing both integration and functional testing. It depends on features.

2) Prioritizing is very important and we should do it at all the stages which means – open the application and decide which feature to be tested first. Go to that feature and decide which component must be tested first. Go to that component and decide what value to be entered first. Don’t apply same rule everywhere!!. Testing logic changes from feature to feature.

3) Focus is important i.e, completely test 1 feature and then only move onto another feature.

4) Between 2 features, we might be doing only positive integration testing or we might be doing both positive and negative integration testing. It depends on the feature.

Take two modules. Check if data flow between the two is working
fine. If it is, then add one more module and test again. Continue like
this. Incrementally add the modules and test the data flow between
the modules.

There are two ways,
a) Top-down Incremental Integration Testing
b) Bottom – up Incremental Integration Testing

In the above example. The development team develops the s/w and send it to the CEO of the testing team. The CEO then logs onto the s/w and creates the username and password and send a mail to a manager and tells him to start testing the s/w. The manager then edits the username and password and creates an username and password and send it to the engineer for testing. This hierarchy from CEO to Testing Engineer is top-down incremental integration testing.

Similarly, the testing engineer once he finishes testing sends a report to the manager, who then sends a report to the CEO. This is known as bottom-up incremental integration testing.

Stub is a dummy module which just receives data and generates a whole lot of expected data, but it behaves like a real module. When a data is sent from real module A to stub B, then B just accepts the data without validating and verifying the data and it generates expected results for the given data.

The function of a driver is it checks the data from A and sends it to stub and also checks the expected data from stub and sends it to A. Driver is one which sets up the test environment and takes care of communications, analyses results and sends the report. We never use stubs and drivers in testing.

In WBT, bottom-up integration testing is preferred because writing drivers is easy. In black-box testing, no preference and depends on the application.
Reply
#2
I want two hundred scenarios for integration testing sir
Reply
#3
(05-04-2014, 08:03 AM)Guest Wrote: I want two hundred scenarios for integration testing sir

Reply
#4
(13-04-2014, 02:49 AM)PANKAJ123[at]GMAIL.COM Wrote:
(05-04-2014, 08:03 AM)Guest Wrote: I want two hundred scenarios for integration testing sir

Reply
#5
I want 200 scenarios for integration testing.
Reply
#6
(05-04-2014, 08:03 AM)Guest Wrote: I want two hundred scenarios for integration testing sir

Reply
#7
100 test scenario for gmail in integration testing

Scenario 1 – Login as A to amount transfer – send 100rs amount – message should be displayed saying ‘amount transfer successful’ – now logout as A and login as B – go to amount balance and check balance – balance is increased by 100rs – thus integration test is successful.

Scenario 2 – also we check if amount balance has decreased by 100rs in A

Scenario 3 – click on transactions – in A and B, message should be displayed regarding the data and time of amount transfer

Thus in Integration Testing, we must remember the following points,

1) Understand the application thoroughly i.e, understand how each and every feature works. Also understand how each and every feature are related or linked to each other.
2) Identify all possible scenarios
3) Prioritize all the scenarios for execution
4) Test all the scenarios
5) If you find defects, communicate defect report to developers
6) Do positive and negative integration testing. Positive – if there is total balance of 10,000 – send 1000rs and see if amount transfer works fine – if it does, then test is pass. Negative – if there is total balance of 10,000 – send 15000rs and see if amount transfer happens – if it doesn’t happen, test is pass – if it happens, then there is a bug in the program and send it to development team for repairing defects.

Let us consider gmail software as shown above. We first do functional testing for username and password and submit and cancel button. Then we do integration testing for the above. The following scenarios can be considered,

Scenario 1 – Login as A and click on compose mail. We then do functional testing for the individual fields. Now we click on send and also check for save drafts. After we send mail to B, we should check in the sent items folder of A to see if the sent mail is there. Now we logout as A and login as B. Go to inbox and check if the mail has arrived.

Scenario 2 – we also do integration testing for spam folders. If the particular contact has been marked as spam, then any mail sent by that user should go to spam folder and not to the inbox.
We also do functional testing for each and every feature like – inbox,sent items etc .

Let us consider the figure shown above.
We first do functional testing for all the text fields and each and every feature. Then we do integration testing for the related features. We first test for add user and list user and delete user and then edit user and also search user.

Points to remember,
1) There are features we might be doing only doing functional testing and there are features we might be doing both integration and functional testing. It depends on features.

2) Prioritizing is very important and we should do it at all the stages which means – open the application and decide which feature to be tested first. Go to that feature and decide which component must be tested first. Go to that component and decide what value to be entered first. Don’t apply same rule everywhere!!. Testing logic changes from feature to feature.

3) Focus is important i.e, completely test 1 feature and then only move onto another feature.

4) Between 2 features, we might be doing only positive integration testing or we might be doing both positive and negative integration testing. It depends on the feature.

Take two modules. Check if data flow between the two is working
fine. If it is, then add one more module and test again. Continue like
this. Incrementally add the modules and test the data flow between
the modules.

There are two ways,
a) Top-down Incremental Integration Testing
b) Bottom – up Incremental Integration Testing

In the above example. The development team develops the s/w and send it to the CEO of the testing team. The CEO then logs onto the s/w and creates the username and password and send a mail to a manager and tells him to start testing the s/w. The manager then edits the username and password and creates an username and password and send it to the engineer for testing. This hierarchy from CEO to Testing Engineer is top-down incremental integration testing.

Similarly, the testing engineer once he finishes testing sends a report to the manager, who then sends a report to the CEO. This is known as bottom-up incremental integration testing.

Stub is a dummy module which just receives data and generates a whole lot of expected data, but it behaves like a real module. When a data is sent from real module A to stub B, then B just accepts the data without validating and verifying the data and it generates expected results for the given data.

The function of a driver is it checks the data from A and sends it to stub and also checks the expected data from stub and sends it to A. Driver is one which sets up the test environment and takes care of communications, analyses results and sends the report. We never use stubs and drivers in testing.

In WBT, bottom-up integration testing is preferred because writing drivers is easy. In black-box testing, no preference and depends on the application.
Reply
#8
please send me 100 integration testing scenario for gmail
Reply
#9
plz send me 200 integration testing scenarios for gmail
Reply
#10
(05-04-2014, 02:34 AM)Guest Wrote: 100 test scenario for gmail in integration testing
100 test scenario for gmail in integration testing

Reply
#11
Guest pid='' dateline=' Wrote:I want two hundred scenarios for integration testing sir

Reply
#12
(13-04-2014, 02:49 AM)PANKAJ123[at]GMAIL.COM Wrote:
(05-04-2014, 08:03 AM)Guest Wrote: I want two hundred scenarios for integration testing sir
Reply
#13
I WANT 200 INTEGRATION TESTING SCENARIOS OF GMAIL
Reply
#14
(21-12-2015, 06:54 PM)Guest Wrote:
(05-04-2014, 02:34 AM)Guest Wrote: 100 test scenario for gmail in integration testing
100 test scenario for gmail in integration testing
Reply
#15
Integration tests: -


The test of data flow between two modules is the integration test.

Example 1:-

Look at the image.

[Image: main-qimg-dba2017d930be55b1097d7bde643e5f0-p]

This is a basic prototype of data flow between different modules of Gmail backend scripts.

As the Interation test is to verify the flow of data between two modules, the scenarios are as follows:

Scenarios: -

If an email in Inbox is reported as spam, the email will appear on the spam link. Check the same email in Spam Link. Mail will now not be displayed in Inbox.
The same email (inbox in Spam) in Spam will be moved back to Inbox.
You will delete an email from Inbox. It will pass to Bin.
Again the same mail (from inbox to Bin) in Bin can be moved to Inbox.

As we observe that each scenario contains the data flow (mail) between two modules (folder).
Reply

Important Note..!

If you are not satisfied with above reply ,..Please

ASK HERE

So that we will collect data for you and will made reply to the request....OR try below "QUICK REPLY" box to add a reply to this page
Tagged Pages: testing gmail, 15 integration scenario for gmaik application, integration scenario on gmail, integration testing test scenarios for registration, integration test scenarios for gmail application, 200 integration test scenarios for gmail, integration test cases for gmail,
Popular Searches: top 100 oldies songs, list of top 100 songs 2011oad 08 02 2013, alaorg top 100, hybrid integration testing, pirate bay4 top 100, top 100 greatest athletes, 164 100 43 36pesilip,

[-]
Quick Reply
Message
Type your reply to this message here.

Image Verification
Please enter the text contained within the image into the text box below it. This process is used to prevent automated spam bots.
Image Verification
(case insensitive)

Possibly Related Threads...
Thread Author Replies Views Last Post
  50 scenarios on gmail in integration testing 2 2,578 30-04-2018, 11:39 AM
Last Post: Guest
  integration test scenarios gmail 5 2,936 11-09-2017, 11:16 AM
Last Post: jaseela123d
Wink online aptitude test code in asp net 1 1,864 07-09-2017, 01:21 PM
Last Post: [email protected]
  integration test scenarios for gmail login page 1 1,598 15-04-2017, 02:15 PM
Last Post: jaseela123d
  test cases for transport management system 1 927 12-04-2017, 04:12 PM
Last Post: jaseela123d
Wink integration testing for gmail 2 1,004 10-04-2017, 04:23 PM
Last Post: jaseela123d
  schlumberger aptitude test questions and answers 1 935 10-04-2017, 02:52 PM
Last Post: jaseela123d
  integration test scenarios for gmail login page 1 1,266 10-04-2017, 12:54 PM
Last Post: jaseela123d
  100 test scenario for gmail in integration testing 1 1,499 07-04-2017, 02:29 PM
Last Post: jaseela123d
  how is nestle aptitude test 1 766 07-04-2017, 12:04 PM
Last Post: jaseela123d

Forum Jump: