protected JndiRegistry createRegistry() throws Exception {
JndiRegistry registry = super.createRegistry();
commitService = new MockCommitService();
registry.bind("githubCommitService", commitService);
repositoryService = new MockRepositoryService();
registry.bind("githubRepositoryService", repositoryService);
pullRequestService = new MockPullRequestService();
registry.bind("githubPullRequestService", pullRequestService);