We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6b4e4d commit 5514bd2Copy full SHA for 5514bd2
src/test/java/org/utplsql/maven/plugin/util/StringUtilTest.java
@@ -16,6 +16,11 @@ void is_empty_true() {
16
assertTrue(isEmpty(""));
17
}
18
19
+ @Test
20
+ void is_empty_null_true() {
21
+ assertTrue(isEmpty(null));
22
+ }
23
+
24
@Test
25
void is_empty_false() {
26
assertFalse(isEmpty("abc"));
@@ -36,6 +41,11 @@ void is_blank_true() {
36
41
assertTrue(isBlank(" "));
37
42
38
43
44
45
+ void is_blank_null_true() {
46
+ assertTrue(isBlank(null));
47
48
39
49
40
50
void is_blank_false() {
51
assertFalse(isBlank("abc"));
0 commit comments