测试withA withB diff方法
()
| 28 | * 测试withA withB diff方法 |
| 29 | */ |
| 30 | @Test |
| 31 | public void diff() { |
| 32 | String str1 = "{\"a\":null}"; |
| 33 | String str2 = "{\"a\":\"\"}"; |
| 34 | List<Result> diff = new Diff().diff(str1,str2); |
| 35 | assertEquals(ResultConvertUtil.TYPE_MODIFY,diff.get(0).getDiffType()); |
| 36 | } |
| 37 | |
| 38 | /** |
| 39 | * 测试withNoisePahList方法 |
nothing calls this directly
no test coverage detected