Unit testing tests individual components. Such as, if you modified a program to behave in a specific way under a specific set of conditions, you would test that it does precisely that.
System Integration Testing tests a program within the entire system. For example, you would also test programs that run before and after this program to ensure that they were not negatively impacted by your change.
2006-11-02 00:17:29
·
answer #1
·
answered by leaptad 6
·
0⤊
1⤋
Unit Testing Vs System Testing
2016-11-01 09:05:59
·
answer #2
·
answered by ? 4
·
0⤊
0⤋
In Unit Testing, you test a component or part of a software application to see if it works correctly by itself. Many developers use a Unit Test Framework such as JUnit for Java (other languages have other framework) to accomplish this kind of testing. In Integration Testing, you test the combined components/parts of a software application to see if they function correctly together, as a whole. As such, integration testing is typically done after unit testing and is more common for distributed applications (tiered, client/server, internet applications).
2016-05-23 16:05:44
·
answer #3
·
answered by Anonymous
·
0⤊
0⤋
System intergratation testing is the testing of the different entities that make up that system and how they communicate or interact with each other to provide the solution the system is crated to carry out
while unit testing is the testing of each unit in the system and how that unit works by itself if it functions properly
System intergratation testing example.
how does the computer components like motherboard, harddisk, proccesor, RAM interact inorder to eanble you retrive a document edit it and save it so as to edit it later.
system unit testing example,
does the processor work properly according to its desing specifications?
2006-11-02 00:25:35
·
answer #4
·
answered by mich01 3
·
0⤊
0⤋
in unit testing, you test only one program or module
but system integration testing merely tests that 2 or more separate modules or programs or systems can work together as expected.
2006-11-02 00:17:39
·
answer #5
·
answered by ustaadji 2
·
0⤊
0⤋
Just as the names suggest.
Unit testing attempts to check each part of the system is working correctly.
http://en.wikipedia.org/wiki/Unit_testing
System integration testing attempts to test the entire system as a working entity.
http://en.wikipedia.org/wiki/Integration_testing
///
2006-11-02 00:17:04
·
answer #6
·
answered by jan 7
·
0⤊
1⤋