测试withNoisePahList方法
()
| 39 | * 测试withNoisePahList方法 |
| 40 | */ |
| 41 | @Test |
| 42 | public void diff1() { |
| 43 | String str1 = "{\"a\":null}"; |
| 44 | String str2 = "{\"a\":\"\"}"; |
| 45 | List<String> noiseList = Lists.newArrayList("a"); |
| 46 | List<Result> diff = new Diff().withNoisePahList(noiseList).diff(str1, str2); |
| 47 | assertEquals(0,diff.size()); |
| 48 | } |
| 49 | |
| 50 | /** |
| 51 | * 测试withPathModule withAlgorithmEnum方法 |
nothing calls this directly
no test coverage detected