forked from gwt-test-utils/gwt-test-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
Home
twistedpair edited this page Feb 3, 2013
·
21 revisions
gwt-test-utils is a Java testing framework for GWT applications. It provides a simple way to test your GWT client code without GWTTestCase
or any servlet container instance!
It's the most advanced Test Double available for GWT, letting you use any Java tool you want without restriction with barely any required configuration.
gwt-test-utils allows you to write Java tests of many natures:
- strict component unit tests, where every other object may be mocked (like RPC services, etc.).
- complex application use cases, where you test a part of your UI's workflow.
- automated acceptance tests, where you'll write fixtures with gwt-test-utils (for example, it works well with Concordion).
_The following documentation is based on many code samples available on the [gwt-test-utils-samples GitHub repository](https://github.com/gwt-test-utils/gwt-test-utils-samples)._