*Made quotedOrNull method public
This is done for accessing this in ut
*Added a unit test for the SliStringUtils.quotedOrNull()
This is done for increasing code coverage
Issue-Id: CCSDK-106
Change-Id: I9d74c6645256227b23beded5179fbb28ac3d3c04
Signed-off-by: surya-huawei <a.u.surya@huawei.com>
}
}
- private static String quotedOrNULL( String str ) {
+ public static String quotedOrNULL( String str ) {
return (str == null) ? "NULL" : '"' + str + '"';
}
assertThat(ctx.getAttribute("result_length"), equalTo("2"));
}
+ @Test
+ public final void testQuotedOrNull() throws SvcLogicException {
+ //param.put("nullString",null);
+ assertEquals("NULL",SliStringUtils.quotedOrNULL(null));
+ }
+
@Test
public void equalsIgnoreCaseTrue() throws SvcLogicException {
String sourceString = "HeLlOwORLD";