tags:

views:

35

answers:

1

what type of testing is performed on standalone application ,web based applicaton & client server application?

+1  A: 

Once you have a whole application, unit testing had better be done (since it applies to each unit separately, not to the whole), so you're left with integration testing. Some distinguish regression testing, but it's really just a slightly different motivation for much the same kind of integration tests.

Load testing does deserve a separate status, since it's mostly about checking for graceful degradation under overload conditions.

Alex Martelli
He should also see http://en.wikipedia.org/wiki/White-box_testing (White box testing) http://en.wikipedia.org/wiki/Black_box_testing (Black box testing).
SB
Aggressive regresssion testing on each individual module is still important to maintain, though.
Anon.