alvinalexander.com | career | drupal | java | mac | mysql | perl | scala | uml | unix  

Groovy example source code file (SpreadListOperatorTest.groovy)

This example Groovy source code file (SpreadListOperatorTest.groovy) is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Java - Groovy tags/keywords

bar, bar, groovytestcase, groovytestcase, spreadlistoperatortest, spreadlistoperatortest

The Groovy SpreadListOperatorTest.groovy source code

package groovy.operator

/**
 * @version $Revision: 4996 $
 *
 * <code>[2, 3].toSpreadList() equals to *[2, 3] 

* * For an example, <pre> * assert [1, *[2, 3], 4] == [1, 2, 3, 4] * </pre> * * @author Pilho Kim * @author Jochen Theodorou */ class SpreadListOperatorTest extends GroovyTestCase { void testSpreadingInList() { println([1, *[222, 333], 456]) assert [1, *[222, 333], 456] == [1, 222, 333, 456] def y = [1,2,3] assert [*y] == y } void testSpreadingRange() { def r = 1..10 assert [*r] == r assert [*1..10] == r } void testSpreadingInMethodParameters() { assert sum(1, *[2, 3], 4) == 10 assert sum(*[10, 20, 30, 40]) == 100 def z = [11, 22, 33] assert sum(1, *z) == 67 assert sum(*z, 2) == 68 assert sum(*z, 44) == 110 def x = ["foo", "Bar-"] assert sum(*x, *x) == "fooBar-fooBar-" } def sum(a, b, c, d) { return a + b + c + d } void testSpreadingInClosureParameters() { def twice = {it*2} assert twice(3) == 6 assert twice("abcd") == 'abcdabcd' assert twice(*[11]) == 22 } }

Other Groovy examples (source code examples)

Here is a short list of links related to this Groovy SpreadListOperatorTest.groovy source code file:

... this post is sponsored by my books ...

#1 New Release!

FP Best Seller

 

new blog posts

 

Copyright 1998-2021 Alvin Alexander, alvinalexander.com
All Rights Reserved.

A percentage of advertising revenue from
pages under the /java/jwarehouse URI on this website is
paid back to open source projects.