14 lines
223 B
Groovy
14 lines
223 B
Groovy
package extensions
|
|
|
|
import org.junit.Ignore
|
|
import spock.lang.Specification
|
|
|
|
|
|
class StackTraceTest extends Specification {
|
|
|
|
def 'stkacktrace'() {
|
|
// expect:
|
|
// throw new RuntimeException("blabla")
|
|
}
|
|
}
|