(String[] args)
| 154 | } |
| 155 | |
| 156 | public static void main(String[] args) { |
| 157 | String[] lhs = getFileContents("expected.c"); |
| 158 | String[] rhs = getFileContents("actual.c"); |
| 159 | |
| 160 | Diff.DiffResult result = Diff.diff(lhs, rhs); |
| 161 | System.out.println(result); |
| 162 | |
| 163 | SwingDiff swingDiff = new SwingDiff(result); |
| 164 | } |
| 165 | |
| 166 | private static String arrayToString(String[] array) { |
| 167 | StringBuilder stringBuilder = new StringBuilder(); |
nothing calls this directly
no test coverage detected