diff options
Diffstat (limited to 'formats/objfile/common_test.go')
-rw-r--r-- | formats/objfile/common_test.go | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/formats/objfile/common_test.go b/formats/objfile/common_test.go index e443e73..682dfbb 100644 --- a/formats/objfile/common_test.go +++ b/formats/objfile/common_test.go @@ -1,7 +1,6 @@ package objfile import ( - "bytes" "encoding/base64" "testing" @@ -68,33 +67,3 @@ var objfileFixtures = []objfileFixture{ } func Test(t *testing.T) { TestingT(t) } - -type SuiteCommon struct{} - -var _ = Suite(&SuiteCommon{}) - -func (s *SuiteCommon) TestHeaderReadEmpty(c *C) { - var h header - c.Assert(h.Read(new(bytes.Buffer)), Equals, ErrHeader) -} - -func (s *SuiteCommon) TestHeaderReadGarbage(c *C) { - var h header - c.Assert(h.Read(bytes.NewBuffer([]byte{1, 2, 3, 4, 5})), Equals, ErrHeader) - c.Assert(h.Read(bytes.NewBuffer([]byte{1, 2, 3, 4, 5, '0'})), Equals, ErrHeader) -} - -func (s *SuiteCommon) TestHeaderReadInvalidType(c *C) { - var h header - c.Assert(h.Read(bytes.NewBuffer([]byte{1, 2, ' ', 4, 5, 0})), Equals, core.ErrInvalidType) -} - -func (s *SuiteCommon) TestHeaderReadInvalidSize(c *C) { - var h header - c.Assert(h.Read(bytes.NewBuffer([]byte{'b', 'l', 'o', 'b', ' ', 'a', 0})), Equals, ErrHeader) -} - -func (s *SuiteCommon) TestHeaderReadNegativeSize(c *C) { - var h header - c.Assert(h.Read(bytes.NewBuffer([]byte{'b', 'l', 'o', 'b', ' ', '-', '1', 0})), Equals, ErrNegativeSize) -} |