测试withPathModule withAlgorithmEnum方法
()
| 51 | * 测试withPathModule withAlgorithmEnum方法 |
| 52 | */ |
| 53 | @Test |
| 54 | public void diff3() { |
| 55 | String str1 = "{\"a\":null}"; |
| 56 | String str2 = "{\"a\":\"\"}"; |
| 57 | List<String> noiseList = Lists.newArrayList("a"); |
| 58 | List<Result> diff = new Diff().withNoisePahList(noiseList).withAlgorithmEnum(null).diff(str1, str2); |
| 59 | assertEquals(0,diff.size()); |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * 测试withSpecialPath withAlgorithmEnum withA withB方法 |
nothing calls this directly
no test coverage detected