()
| 82 | } |
| 83 | |
| 84 | public static boolean checkMakeFile() { |
| 85 | // 在这里检查文件是否存在 |
| 86 | File file = new File("test.txt"); |
| 87 | if (file.exists()) { |
| 88 | loadFileIntoTable(file); |
| 89 | |
| 90 | return true; |
| 91 | } |
| 92 | return false; |
| 93 | } |
| 94 | |
| 95 | public static void loadFileIntoTable(File file) { |
| 96 |
nothing calls this directly
no test coverage detected