blob: f4417011d7cf8ad85ff97fc0fbec5c27e614a1c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
FAILED: test.groovy.GroovyTest.groovyInternalMethodsAreSkipped
GITHUB-2360
groovy.lang.MissingPropertyException: No such property: Issue2360Sample for class: test.groovy.GroovyTest
at org.codehaus.groovy.runtime.ScriptBytecodeAdapter.unwrap(ScriptBytecodeAdapter.java:65)
at org.codehaus.groovy.vmplugin.v8.IndyGuardsFiltersAndSignatures.unwrap(IndyGuardsFiltersAndSignatures.java:160)
at org.codehaus.groovy.vmplugin.v8.IndyInterface.fromCache(IndyInterface.java:318)
at test.groovy.GroovyTest.groovyInternalMethodsAreSkipped(GroovyTest.groovy:18)
at java.base/java.util.ArrayList.forEach(ArrayList.java:1604)
... Removed 24 stack frames
--- a/testng-core/src/test/groovy/test/groovy/GroovyTest.groovy
+++ b/testng-core/src/test/groovy/test/groovy/GroovyTest.groovy
@@ -13,7 +13,7 @@ import static org.assertj.core.api.Assertions.assertThat
class GroovyTest extends SimpleBaseTest {
- @Test(description = "GITHUB-2360")
+ @Test(enabled = false)
void groovyInternalMethodsAreSkipped() {
def tng = create Issue2360Sample
def testMethodNames = []
|