271272273274275276277278279280281
}); } @Test public void greater() { test(new Scriptable() { boolean act(float value) { return value > 1; } });
281282283284285286287288289290291
}); } @Test public void greaterEqual() { test(new Scriptable() { boolean act(float value) { return value >= 1; } });
2021222324252627282930
@SuppressWarnings("unused") public class IntConstantTest extends ScriptTester { @Test public void one() { test(new Scriptable() { int act() { return 1; } });
3031323334353637383940
}); } @Test public void two() { test(new Scriptable() { int act() { return 2; } });
4041424344454647484950
}); } @Test public void three() { test(new Scriptable() { int act() { return 3; } });
5051525354555657585960
}); } @Test public void four() { test(new Scriptable() { int act() { return 4; } });
6061626364656667686970
}); } @Test public void five() { test(new Scriptable() { int act() { return 5; } });
7071727374757677787980
}); } @Test public void siz() { test(new Scriptable() { int act() { return 6; } });
8081828384858687888990
}); } @Test public void seven() { test(new Scriptable() { int act() { return 7; } });
90919293949596979899100
}); } @Test public void eight() { test(new Scriptable() { int act() { return 8; } });