offtopic/src/test/groovy/offtopic/OfftopicClientSpec.groovy

14 lines
262 B
Groovy

package offtopic
import spock.lang.Specification
class OfftopicClientSpec extends Specification {
def "initialization should create a clientId"() {
when:
def client = new OfftopicClient()
then:
client.clientId != 0
}
}