* Identities + repo + definition */
()
| 104 | */ |
| 105 | |
| 106 | func makeTestContext() (repository.ClockedRepo, identity.Interface, identity.Interface, entity.Resolvers, Definition) { |
| 107 | repo := repository.NewMockRepo() |
| 108 | id1, id2, resolvers, def := makeTestContextInternal(repo) |
| 109 | return repo, id1, id2, resolvers, def |
| 110 | } |
| 111 | |
| 112 | func makeTestContextGoGit(t *testing.T) (repository.ClockedRepo, identity.Interface, identity.Interface, entity.Resolvers, Definition) { |
| 113 | repo := repository.CreateGoGitTestRepo(t, false) |
no test coverage detected