All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.codegas.test.spock.ApplicationServiceTest.groovy Maven / Gradle / Ivy

The newest version!
package org.codegas.test.spock

import org.codegas.commons.domain.event.DomainEventPublisher
import spock.lang.Specification

abstract class ApplicationServiceTest extends Specification {

   def setup() {
      DomainEventPublisher.instance().reset()
   }

   def cleanup() {
      DomainEventPublisher.instance().reset()
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy