Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to unit-test logic in jsp? [closed]

What kind of tools or techniques exist for this purpose?

like image 532
JtR Avatar asked Sep 09 '09 08:09

JtR


1 Answers

Other than display logic, which is notoriously hard to test, my advice would be don't put logic in JSPs. Instead move it into POJOs and it's problem solved.

like image 197
Nick Holt Avatar answered Oct 22 '22 20:10

Nick Holt