|
Groovy example source code file (ScriptIntegerDivideTest.java)
The Groovy ScriptIntegerDivideTest.java source code
package groovy.lang;
import org.codehaus.groovy.classgen.TestSupport;
/**
* @author Steve Goetze
* @author Jeremy Rayner
*/
public class ScriptIntegerDivideTest extends TestSupport {
/**
* Check integer division which is now a method call rather than the symbol "\".
*/
public void testIntegerDivide() throws Exception {
assertScript("assert 4.intdiv(3) == 1");
}
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy ScriptIntegerDivideTest.java source code file: |
Other websites by Alvin Alexander:
Life/living in Alaska (OneMansAlaska.com)
How I Sold My Business (HowISoldMyBusiness.com)
Copyright 1998-2011 Alvin Alexander, devdaily.com
All Rights Reserved.