|
Groovy example source code file (AsBoolBug.groovy)
The Groovy AsBoolBug.groovy source code
package groovy.bugs
/**
* Test to fix the Jira issues GROOVY-810 and GROOVY-811.
* Test of "string as Boolean" against the issue GROOVY-812.
*
* @author Pilho Kim
* @version $Revision: 2207 $
*/
public class AsBoolBug extends GroovyTestCase {
void testMapAsBool() {
def a = ["A":123]
println ("$a : ${a as Boolean}")
assert a as Boolean == true
a = [:]
println ("$a : ${a as Boolean}")
assert a as Boolean == false
}
void testListAsBool() {
def b = [123]
println ("$b : ${b as Boolean}")
assert b as Boolean == true
b = []
println ("$b : ${b as Boolean}")
assert b as Boolean == false
}
/**
* void testStringAsBool().
*
* <code>string as Boolean is equivalent to
* <code>string != null && string.length() > 0.
*/
// Unfortunately, it contradicts several other test cases, and
// it has already been decided to handle string-to-boolean conversions
// differently. Commented out temporarily on 10 May 2005.
// This is a test case against GROOVY-812
void testStringAsBool() {
def c = "false"
println ("$c : ${c as Boolean}")
assert c as Boolean == true
assert c as Boolean == (c != null && c.length() > 0)
boolean z = c
println ("$z")
assert z == true
if (c)
println "It is true!!"
else
println "It is false!!"
c = "123"
println ("$c : ${c as Boolean}")
assert c as Boolean == true
assert c as Boolean == (c != null && c.length() > 0)
c = "False"
println ("$c : ${c as Boolean}")
assert c as Boolean == true
assert c as Boolean == (c != null && c.length() > 0)
if (c)
println "It is true!!"
else
println "It is false!!"
z = c
println ("$z")
assert z
}
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy AsBoolBug.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.