Reputation: 63
I'm trying to realize a calculator using JAVA
, so I'm following these stages:
for Unit testing I'm using JUnit
but I don't know what I'm gonna need to accomplish the fifth stage.
Upvotes: 0
Views: 57
Reputation: 1501
Integration testing is the phase in software testing in which individual software modules are combined and tested as a group. You can use for this, for example, JBoss Arquillian (http://www.jboss.org/arquillian). Also can use Spring+JUnit for interaction with your application.
Upvotes: 1