()
| 163 | } |
| 164 | |
| 165 | func (s *ObjectStoreTestSuite) TestGetFileObjectNotFound() { |
| 166 | _, err := s.Runner.GetFileObject(s.Fixtures.AdminContext, 99999) |
| 167 | |
| 168 | s.Require().NotNil(err) |
| 169 | s.Require().Contains(err.Error(), "failed to get file object") |
| 170 | } |
| 171 | |
| 172 | func (s *ObjectStoreTestSuite) TestDeleteFileObject() { |
| 173 | // Create a file to delete |
nothing calls this directly
no test coverage detected