You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@groovy.apache.org by "Eric Milles (Jira)" <ji...@apache.org> on 2022/06/30 21:35:00 UTC

[jira] [Resolved] (GROOVY-10671) STC fails to compile AssertJ fluent API expression

     [ https://issues.apache.org/jira/browse/GROOVY-10671?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Eric Milles resolved GROOVY-10671.
----------------------------------
    Fix Version/s: 5.0.0-alpha-1
       Resolution: Fixed

https://github.com/apache/groovy/commit/03886c5fe82cb8664da223f8cd82ada2c2c8b3c7

> STC fails to compile AssertJ fluent API expression
> --------------------------------------------------
>
>                 Key: GROOVY-10671
>                 URL: https://issues.apache.org/jira/browse/GROOVY-10671
>             Project: Groovy
>          Issue Type: Bug
>    Affects Versions: 4.0.3
>            Reporter: Jan Hackel
>            Assignee: Eric Milles
>            Priority: Major
>             Fix For: 5.0.0-alpha-1
>
>
> Groovy 4.0.3 fails to compile this class:
>  
> {code:groovy}
> @Grab('org.assertj:assertj-core:3.22.0')
> @Grab('org.junit.jupiter:junit-jupiter-api:5.8.2')
> import groovy.transform.CompileStatic
> import org.junit.jupiter.api.Test
> import static org.assertj.core.api.Assertions.assertThat
> @CompileStatic
> class AssertJSelfTypesWithCollection {
>   @Test
>   void chainWithAs() {
>     def texts = someStrings()
>     assertThat(texts)
>       .as('a test')
>       .containsExactlyInAnyOrderElementsOf(['a', 'b'])
>   }
>   private static Collection<String> someStrings() {
>     return ['a', 'b']
>   }
> }
> {code}
> It produces a message like
> {noformat}
> org.codehaus.groovy.control.MultipleCompilationErrorsException: startup failed:
> /home/jh/Code/groovy-bugs/src/test/groovy/de/jhunovis/fluentapi/AssertJSelfTypesWithCollection.groovy: 14: [Static type checking] - Cannot find matching method SELF#containsExactlyInAnyOrderElementsOf(java.util.List<java.lang.String>). Please check if the declared type is correct and if the method exists.
>  @ line 14, column 5.
>        assertThat(texts)
>        ^
> 1 error
> {noformat}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)