Test claims regarding SpEL support for T(Character)

See gh-28112
This commit is contained in:
Sam Brannen 2022-02-28 14:19:29 +01:00
parent 6f41180cc5
commit beab8ab4e7
1 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,5 @@
/* /*
* Copyright 2002-2019 the original author or authors. * Copyright 2002-2021 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
@ -420,7 +420,11 @@ public class EvaluationTests extends AbstractExpressionTests {
@Test @Test
public void testStaticRef02() { public void testStaticRef02() {
evaluate("T(java.awt.Color).green.getRGB()!=0", "true", Boolean.class); evaluate("T(java.awt.Color).green.getRGB() != 0", true, Boolean.class);
evaluate("(T(java.lang.Math).random() * 100.0 ) > 0", true, Boolean.class);
evaluate("(T(Math).random() * 100.0) > 0", true, Boolean.class);
evaluate("T(Character).isUpperCase('Test'.charAt(0)) ? 'uppercase' : 'lowercase'", "uppercase", String.class);
evaluate("T(Character).isUpperCase('Test'.charAt(1)) ? 'uppercase' : 'lowercase'", "lowercase", String.class);
} }
// variables and functions // variables and functions