ygh
ygh

Reputation: 595

Does JSFUnit test all aspects of a web application?

I'm a testing noob and I need to test a JSF application. So I only just started exploring JSFUnit (read: I've googled it and StackOverflow-ed it), which as I understand uses/extends JUnit, HTMLUnit, HTTPUnit and other units that I have no idea about.

I hope my questions make sense. I promise they made sense in my head. Any help in this regard would be highly appreciated.

Upvotes: 3

Views: 541

Answers (1)

NikF
NikF

Reputation: 56

It seems that you require something more complex than pure unit tests.

Take a look at Selenium framework, as it simulates user interaction through a real recorded use case, and is easy to work with.

Upvotes: 0

Related Questions