.
Pls. Help me to identify difference between arqulian testing and spock testing plugin or others . . How they are different from each other. ?
.
Pls. Help me to identify difference between arqulian testing and spock testing plugin or others . . How they are different from each other. ?
Arquillian: testing inside the container which means that a deployable archive (jar, war or ear) is created automatically, it is deployed in the container (tomcat, jboss, glassfish etc) and then run tests in it. So you "write real tests", you don't need to mock anything and you can test your application end-to-end (if needed). Spock: used for unit testing and has its own mock mechanisms. It has a lot of similarities with jUnit or TestNG. Difference is that you must write your tests in Groovy (not in Java).