groovy.lang.GroovyShell.runJUnit3Test()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(1.0k)|赞(0)|评价(0)|浏览(119)

本文整理了Java中groovy.lang.GroovyShell.runJUnit3Test()方法的一些代码示例,展示了GroovyShell.runJUnit3Test()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。GroovyShell.runJUnit3Test()方法的具体详情如下:
包路径:groovy.lang.GroovyShell
类名称:GroovyShell
方法名:runJUnit3Test

GroovyShell.runJUnit3Test介绍

[英]Run the specified class extending TestCase as a unit test. This is done through reflection, to avoid adding a dependency to the JUnit framework. Otherwise, developers embedding Groovy and using GroovyShell to load/parse/compile groovy scripts and classes would have to add another dependency on their classpath.
[中]将指定的类扩展TestCase作为单元测试运行。这是通过反射完成的,以避免向JUnit框架添加依赖项。否则,嵌入Groovy并使用GroovyShell加载/解析/编译Groovy脚本和类的开发人员必须在其类路径上添加另一个依赖项。

代码示例

代码示例来源:origin: org.codehaus.groovy/groovy-jdk14

return runJUnit3Test(scriptClass);

代码示例来源:origin: org.kohsuke.droovy/groovy

return runJUnit3Test(scriptClass);

代码示例来源:origin: com.thinkaurelius.groovy-shaded-asm/groovy-shaded-asm

return runJUnit3Test(scriptClass);

代码示例来源:origin: org.codehaus.groovy/groovy-all-minimal

return runJUnit3Test(scriptClass);

相关文章