Skip to content

Testing

  • In JUnit the name of the test class is the same name of the class + suffix test

Test Types

  • Unit
  • Integration
  • API
  • End-To-End
  • Acceptance
  • Performance
  • Stress

TDD (Test Driven Development)

  • The tests guide the development
  • Avoid biased tests
  • Force to write simple code!