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

templates.mws.PluginSpec.groovy Maven / Gradle / Ivy

There is a newer version: 0.14
Show newest version
<%=packageName ? 'package '+packageName : '' %>

import spock.lang.*
import com.adaptc.mws.plugins.testing.*

@TestFor(<%=className%>)
class <%=testClassName%> extends Specification {
	def "Feature of the plugin"() {
		given:
		plugin.id = "myId"
		
		when:
		def id = plugin.id
		
		then:
		id=="myId"
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy