Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Software Testing Tools - for java [closed]

Tags:

java

testing

Can someone list me 5 good softwares for "Software Testing" in java projects? I need to study 5 of them, what do you recommend?

like image 424
Joao Guilherme Avatar asked Apr 03 '10 17:04

Joao Guilherme


1 Answers

  • Unit test frameworks: JUnit / TestNG
  • Mocking frameworks: JMock / EasyMock / Mockito
  • Continuous Integration tools: CruiseControl / Hudson
  • Requirements testing: Fit / FitNesse
  • Code coverage: Cobertura
  • Automated UI testing: Selenium
  • Other tools: HTTPUnit / DBUnit
  • Mutation Testing PITest
  • Contract tester: EqualsVerifier (Ok, full disclosure: I made this one myself.)
like image 166
jqno Avatar answered Oct 24 '22 16:10

jqno