(t *testing.T)
| 86 | } |
| 87 | |
| 88 | func TestCheckFileIsExist_NonExistingFile(t *testing.T) { |
| 89 | assert.False(t, CheckFileIsExist("/nonexistent/file/that/does/not/exist.txt")) |
| 90 | } |
| 91 | |
| 92 | func TestCreateFile_Success(t *testing.T) { |
| 93 | tmpDir := t.TempDir() |
nothing calls this directly
no test coverage detected