(c *C)
| 18 | const testString = "Quick brown fox jumps over black dog and runs away... Really far away... who knows?" |
| 19 | |
| 20 | func (s *CompressSuite) SetUpTest(c *C) { |
| 21 | s.tempfile, _ = os.CreateTemp(c.MkDir(), "aptly-test") |
| 22 | _, _ = s.tempfile.WriteString(testString) |
| 23 | } |
| 24 | |
| 25 | func (s *CompressSuite) TearDownTest(c *C) { |
| 26 | _ = s.tempfile.Close() |
nothing calls this directly
no test coverage detected