Spread-dot operator invokes action to each element in collection or simply makes map of it. It’s useful for quickly mapping collections and especially in the tests where you can compare sub set of collection. For example
persons.map { it.name }
can be replaces with
persons*.name
More info and examples can be found in groovy documentation The Apache Groovy programming language - Operators