From 5b7973998b7e5948c3059e315d2f2e3c2a4f1f95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maciej=20Szarli=C5=84ski?= Date: Fri, 14 Feb 2020 13:49:20 +0100 Subject: [PATCH] Rename MeteredDomainEventPublisherIT --- ...isherSpec.groovy => MeteredDomainEventPublisherIT.groovy} | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) rename src/integration-test/groovy/io/pillopl/library/common/events/publisher/{MeteredDomainEventPublisherSpec.groovy => MeteredDomainEventPublisherIT.groovy} (87%) diff --git a/src/integration-test/groovy/io/pillopl/library/common/events/publisher/MeteredDomainEventPublisherSpec.groovy b/src/integration-test/groovy/io/pillopl/library/common/events/publisher/MeteredDomainEventPublisherIT.groovy similarity index 87% rename from src/integration-test/groovy/io/pillopl/library/common/events/publisher/MeteredDomainEventPublisherSpec.groovy rename to src/integration-test/groovy/io/pillopl/library/common/events/publisher/MeteredDomainEventPublisherIT.groovy index f2e4002..002bfab 100644 --- a/src/integration-test/groovy/io/pillopl/library/common/events/publisher/MeteredDomainEventPublisherSpec.groovy +++ b/src/integration-test/groovy/io/pillopl/library/common/events/publisher/MeteredDomainEventPublisherIT.groovy @@ -2,20 +2,17 @@ package io.pillopl.library.common.events.publisher import groovy.transform.CompileStatic import io.micrometer.core.instrument.MeterRegistry -import io.pillopl.library.LibraryApplication import io.pillopl.library.commons.events.DomainEvent import io.pillopl.library.commons.events.publisher.MeteredDomainEventPublisher import io.pillopl.library.lending.LendingTestContext import org.springframework.beans.factory.annotation.Autowired import org.springframework.boot.test.context.SpringBootTest -import org.springframework.test.context.ContextConfiguration import spock.lang.Specification -import java.awt.event.TextEvent import java.time.Instant @SpringBootTest(classes = [LendingTestContext.class, DomainEventsTestConfig.class]) -class MeteredDomainEventPublisherSpec extends Specification { +class MeteredDomainEventPublisherIT extends Specification { @Autowired MeterRegistry meterRegistry