forked from chuvoks/jersey-test-framework-guice
-
Notifications
You must be signed in to change notification settings - Fork 0
Jersey Test Framework - Guice Module
License
rayarub/jersey-test-framework-guice
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
Guice Module for Jersey Test Framework
======================================
Addon for Jersey Test Framework version 1.13.
Allows convenient dependency injection of test classes using Guice
injection annotations.
Usage:
class MyTest extends GuiceJerseyTest {
class MyModule extends JerseyModule {
protected void configure(Binder b) {
b.bind(FooService.class);
b.bind(BarResource.class);
}
}
@Inject
FooService service;
public MyTest() {
super(MyModule.class);
}
}
About
Jersey Test Framework - Guice Module
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published