示例#1
0
 @Test
 public void testGetPlaceHolderNull() throws IOException {
   int[] value = YamlUtil.getPlaceHolder(UtilitiesConstantsTest.STRING, 0);
   assertEquals(value, null);
 }
示例#2
0
 @Test
 public void testGetPlaceHolder() throws IOException {
   int[] value = YamlUtil.getPlaceHolder(UtilitiesConstantsTest.STR, 0);
   boolean check = value != null;
   assertTrue(check);
 }