Skip to content

Instantly share code, notes, and snippets.

View beezerbt's full-sized avatar

Beezer beezerbt

View GitHub Profile
@beezerbt
beezerbt / IntegrationTestMockingConfig.groovy
Created July 26, 2017 16:32 — forked from snekse/IntegrationTestMockingConfig.groovy
spring-spock-integration-testing blog post samples
@TestConfiguration
class IntegrationTestMockingConfig {
private DetachedMockFactory factory = new DetachedMockFactory()
@Bean
ExternalRankingService externalRankingService() {
factory.Mock(ExternalRankingService)
}
}