|
Groovy example source code file (MyColorOperatorOverloadingTest.groovy)
The Groovy MyColorOperatorOverloadingTest.groovy source code
package groovy.operator
import static java.awt.Color.*
class MyColorOperatorOverloadingTest extends GroovySwingTestCase {
void testAll() {
if (headless) return
def c = new MyColor(128, 128, 128)
assert c.delegate == GRAY
def c2 = -c
assert c2.delegate == DARK_GRAY
assert (+c).delegate == WHITE
use(MyColorCategory) {
assert (~c2).delegate == LIGHT_GRAY
}
}
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy MyColorOperatorOverloadingTest.groovy 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.