blob: 0d9692598c7faf753c231501255fd77c0925ae7b [file] [log] [blame]
class PrefixTest extends GroovyTestCase {
void testIntegerPrefix() {
def x = 1
def y = ++x
assert y == 2
assert x == 2
assert ++x == 3
}
void testDoublePrefix() {
def x = 1.2
def y = ++x
assert y == 2.2
assert x == 2.2
assert ++x == 3.2
assert x == 3.2
}
void testStringPrefix() {
def x = "bbc"
++x
assert x == "bbd"
--x
--x
assert x == "bbb"
}
}