(c *C)
| 97 | } |
| 98 | |
| 99 | func (s *BaseStorageSuite) TestSetEncodedObjectInvalid(c *C) { |
| 100 | o := s.Storer.NewEncodedObject() |
| 101 | o.SetType(plumbing.REFDeltaObject) |
| 102 | |
| 103 | _, err := s.Storer.SetEncodedObject(o) |
| 104 | c.Assert(err, NotNil) |
| 105 | } |
| 106 | |
| 107 | func (s *BaseStorageSuite) TestIterEncodedObjects(c *C) { |
| 108 | for _, o := range s.testObjects { |
nothing calls this directly
no test coverage detected