what type of testing performed on stand alone application.....?
what type of testing is 开发者_如何学Goperformed on standalone application ,web based applicaton & client server application?
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.
精彩评论