Servlet unit test

前端 未结 3 385
鱼传尺愫
鱼传尺愫 2021-01-06 01:16

Currently I\'m using TestNG framework for testing application business logic, i added some Servlet classes recently.

How do I unit test these Servlet classes in Test

3条回答
  •  失恋的感觉
    2021-01-06 01:58

    Follow skaffman's advice if possible. If not, or if you want to test the behaviour of the servlets as front-end controllers, rather than the business logic inside them, you can use:

    • HtmlUnit
    • Selenium
    • Cactus (but I don't know how whether it supports TestNG already)

提交回复
热议问题