()
| 166 | } |
| 167 | |
| 168 | public void testCopyFile() throws IOException { |
| 169 | File i18nFile = getTestFile("i18n.txt"); |
| 170 | File temp = createTempFile(); |
| 171 | Files.copy(i18nFile, temp); |
| 172 | assertThat(Files.toString(temp, UTF_8)).isEqualTo(I18N); |
| 173 | } |
| 174 | |
| 175 | public void testCopyEqualFiles() throws IOException { |
| 176 | File temp1 = createTempFile(); |
nothing calls this directly
no test coverage detected