-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
48 changed files
with
1,307 additions
and
362 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
...fig-global-impl-db/src/test/java/stroom/config/global/impl/db/GlobalConfigTestModule.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package stroom.config.global.impl.db; | ||
|
||
import stroom.test.common.util.db.DbTestModule; | ||
import stroom.util.db.ForceLegacyMigration; | ||
|
||
import com.google.inject.AbstractModule; | ||
|
||
public class GlobalConfigTestModule extends AbstractModule { | ||
|
||
@Override | ||
protected void configure() { | ||
install(new GlobalConfigDaoModule()); | ||
install(new GlobalConfigDbModule()); | ||
install(new DbTestModule()); | ||
|
||
bind(ForceLegacyMigration.class).toInstance(new ForceLegacyMigration() { | ||
}); | ||
} | ||
} |
Oops, something went wrong.