Geeks Talk

Prepare for your Next Interview




Integration testing...?

This is a discussion on Integration testing...? within the Testing Issues forums, part of the Software Testing category; What is integration testing? who will perform(white box testors or black box testors?...


Go Back   Geeks Talk > Software Testing > Testing Issues

Register FAQ Members List Calendar Mark Forums Read
  #1 (permalink)  
Old 11-27-2006
Expert Member
 
Join Date: Sep 2005
Posts: 110
Thanks: 8
Thanked 28 Times in 15 Posts
suji is on a distinguished road
Integration Testing

What is integration testing? who will perform(white box testors or black box testors?
Reply With Quote
The Following User Says Thank You to suji For This Useful Post:
Sponsored Links
  #2 (permalink)  
Old 11-27-2006
Junior Member
 
Join Date: Jun 2006
Location: chennai
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
ankireddypalli is on a distinguished road
Thumbs up Re: Integration Testing

White box testers
Reply With Quote
  #3 (permalink)  
Old 11-27-2006
Junior Member
 
Join Date: Nov 2006
Location: mumbai
Posts: 16
Thanks: 2
Thanked 2 Times in 2 Posts
ramana_gl is on a distinguished road
Re: Integration Testing

Integration Testing can be done by white box testors( Developers) while developing the software i.e before build .

Integration Testing can be done by Black box Testers (Testers) after Build to test whether any bugs are formed while intergarting (linking one screen to other).

so, I want to conclude that this Intergration testing will be done by both White and Black Box testers.

Ramana.
Reply With Quote
The Following User Says Thank You to ramana_gl For This Useful Post:
  #4 (permalink)  
Old 11-28-2006
Junior Member
 
Join Date: Nov 2006
Location: chennai
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
govi4ever is on a distinguished road
Re: Integration Testing

Hi suji....

Integration testing is nothing but testing two individual unit or the component.

In this testing we will test the data linking and data sharing.

This testing will be done by both developer as well as testers.

They are three techniques in integration testing
1. Top down Approach - Stubs
2. Bottom up Approach - Drivers
3. Big Bang Approach - Both
Reply With Quote
  #5 (permalink)  
Old 11-30-2006
Junior Member
 
Join Date: Nov 2006
Location: Bangalore
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
vipuld is on a distinguished road
Re: Integration Testing

Integration testing is primarily done to ensure that no data loss happens as the data flows across differnent modules in a System. Integration testing also ensures that end to end transations in any system are working on the desired manner
Reply With Quote
  #6 (permalink)  
Old 12-04-2006
Junior Member
 
Join Date: Nov 2006
Location: Hyderabad
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Narender Reddy is on a distinguished road
Re: Integration Testing

intergration test is conducted by white box test eningeers or block box test eingers integration testing is conducted on group modules
Reply With Quote
  #7 (permalink)  
Old 12-04-2006
Expert Member
 
Join Date: Apr 2006
Location: India, Hyderabad
Posts: 129
Thanks: 19
Thanked 41 Times in 17 Posts
bvani is on a distinguished road
Re: Integration Testing

Integration testing (sometimes called Integration and Testing, abbreviated I&T) is the phase of software testing in which individual software modules are combined and tested as a group. It follows unit testing and precedes system testing.

More
Reply With Quote
  #8 (permalink)  
Old 04-24-2007
Moderator
 
Join Date: Sep 2006
Location: Delhi (India)
Posts: 866
Thanks: 12
Thanked 81 Times in 65 Posts
jainbrijesh is on a distinguished road
Re: Integration Testing

Quote:
Originally Posted by suji View Post
What is integration testing? who will perform(white box testors or black box testors?

Integration testing test the communication b/w units.
Black box tester as well as developers did the integration testing.
__________________
Brijesh Jain
brijesh.tester@yahoo.co.in
http://softwaretestingexpertise.blogspot.com
Reply With Quote
  #9 (permalink)  
Old 05-15-2007
Junior Member
 
Join Date: Nov 2005
Posts: 28
Thanks: 1
Thanked 4 Times in 3 Posts
rose is on a distinguished road
Integration testing

Hi all
I have tested modules of an application seperately but was never part of integration testing.My current job demands an integration testing part...where the modules I tested once will be integrated and given to me...
So i have the following doubts
1.We will be following Bottom Up appraoch ...but how will I prioritise my testing task??
2.Shall I only need to test the functionalities that get affected.
3.Or shall I need to test the whole application all over again

Help me come out of Confusion
Reply With Quote
  #10 (permalink)  
Old 05-15-2007
Moderator
 
Join Date: Sep 2006
Location: Delhi (India)
Posts: 866
Thanks: 12
Thanked 81 Times in 65 Posts
jainbrijesh is on a distinguished road
Re: Integration testing

Hi Rose,

What you are saying, you have already tested.

At integration testing, the scope is different and aim is different of the testing.

At integration test whether two modules are communicating well or not, If there is any change in functionality, then test that, otherwise you can avoid it now.

As i know , at integration level there will addition of some new minor functionality so that modules can communicate, keep concentration on that.
__________________
Brijesh Jain
brijesh.tester@yahoo.co.in
http://softwaretestingexpertise.blogspot.com
Reply With Quote
The Following User Says Thank You to jainbrijesh For This Useful Post:
  #11 (permalink)  
Old 05-15-2007
Junior Member
 
Join Date: Nov 2005
Posts: 28
Thanks: 1
Thanked 4 Times in 3 Posts
rose is on a distinguished road
Re: Integration testing

Thanks brijesh for that quick reply

Could u pls elaborate on this statement "some new minor functionality so that modules can communicate"

Just give me an example if possible so that it becames more clear for me...
Reply With Quote
  #12 (permalink)  
Old 05-15-2007
Moderator
 
Join Date: Sep 2006
Location: Delhi (India)
Posts: 866
Thanks: 12
Thanked 81 Times in 65 Posts
jainbrijesh is on a distinguished road
See, some times for a module to work, developer put some static data , that have to change dynamically when all modules works together.That you have to test.For ex, there are two module, user registration and form posting,like here.

Now registration module is different, form posting is different, developer makes a static user , who post form to ask questions.

But when it get integrated, the id of user will come from registration module, now there will some change in code, to fetch user id.This type of functionality you should concentrate when test.
__________________
Brijesh Jain
brijesh.tester@yahoo.co.in
http://softwaretestingexpertise.blogspot.com

Last edited by jainbrijesh : 05-16-2007 at 05:15 AM.
Reply With Quote
  #13 (permalink)  
Old 05-15-2007
Junior Member
 
Join Date: Nov 2005
Posts: 28
Thanks: 1
Thanked 4 Times in 3 Posts
rose is on a distinguished road
Re: Integration testing

Thanks brijesh....one more query
So all the stub datas getting replaced by the real time data need to be tested during integration phase...that part is clear for me nw

Secondly..during integration because of the code change usually we say like "other parts may get affected"...How can we recoganize these "Other parts"....Or is it during Exploratory testing that we find out these affected parts??
Reply With Quote
  #14 (permalink)  
Old 05-15-2007
Expert Member
 
Join Date: Nov 2006
Location: Hyd-IND
Posts: 523
Thanks: 1
Thanked 55 Times in 46 Posts
sutnarcha is on a distinguished road
The other parts that may get affected will be in and around the ‘links’ between individual modules. I am calling the features that involve in synchronization between modules as ‘links’.

The HLD documents will define these links.

HLD is High Level Design
__________________
Lack of WILL POWER has caused more failure than
lack of INTELLIGENCE or ABILITY.

-sutnarcha-

Last edited by jainbrijesh : 05-16-2007 at 05:15 AM.
Reply With Quote
  #15 (permalink)  
Old 05-18-2007
Junior Member
 
Join Date: May 2007
Location: gurgaon
Posts: 12
Thanks: 0
Thanked 1 Time in 1 Post
vikas_goel28 is on a distinguished road
Question Integration testing...?

Hi,

We are writing test cases for Integration testing as well as we get the Customers requirements.
What is the difference between them .Please tell me.

thanks
vikas goyal

Last edited by jainbrijesh : 06-06-2007 at 03:44 AM.
Reply With Quote
  #16 (permalink)  
Old 06-01-2007
Contributing Member
 
Join Date: May 2007
Location: India
Posts: 93
Thanks: 2
Thanked 5 Times in 5 Posts
vijenjoy2k2 is on a distinguished road
Integration Testing

Who do the Integration Testing. Developer or Tester. According to me it is done by Tester. what your views.
Reply With Quote
  #17 (permalink)  
Old 06-01-2007
Contributing Member
 
Join Date: Mar 2007
Posts: 43
Thanks: 1
Thanked 2 Times in 2 Posts
varmakub is on a distinguished road
Re: Integration Testing

Even in UNIT testing developer performs...but its a responsibility of a Tester
Reply With Quote
  #18 (permalink)  
Old 06-01-2007
Expert Member
 
Join Date: Nov 2006
Location: Hyd-IND
Posts: 523
Thanks: 1
Thanked 55 Times in 46 Posts
sutnarcha is on a distinguished road
Re: Integration Testing

Integration Testing is Test team's responsibility.
__________________
Lack of WILL POWER has caused more failure than
lack of INTELLIGENCE or ABILITY.

-sutnarcha-
Reply With Quote