summaryrefslogtreecommitdiff
path: root/crypto/compactcert/msgp_gen_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/compactcert/msgp_gen_test.go')
-rw-r--r--crypto/compactcert/msgp_gen_test.go60
1 files changed, 0 insertions, 60 deletions
diff --git a/crypto/compactcert/msgp_gen_test.go b/crypto/compactcert/msgp_gen_test.go
index 5b292879e..23ebb5a3f 100644
--- a/crypto/compactcert/msgp_gen_test.go
+++ b/crypto/compactcert/msgp_gen_test.go
@@ -132,66 +132,6 @@ func BenchmarkUnmarshalCompactOneTimeSignature(b *testing.B) {
}
}
-func TestMarshalUnmarshalParticipant(t *testing.T) {
- partitiontest.PartitionTest(t)
- v := Participant{}
- bts := v.MarshalMsg(nil)
- left, err := v.UnmarshalMsg(bts)
- if err != nil {
- t.Fatal(err)
- }
- if len(left) > 0 {
- t.Errorf("%d bytes left over after UnmarshalMsg(): %q", len(left), left)
- }
-
- left, err = msgp.Skip(bts)
- if err != nil {
- t.Fatal(err)
- }
- if len(left) > 0 {
- t.Errorf("%d bytes left over after Skip(): %q", len(left), left)
- }
-}
-
-func TestRandomizedEncodingParticipant(t *testing.T) {
- protocol.RunEncodingTest(t, &Participant{})
-}
-
-func BenchmarkMarshalMsgParticipant(b *testing.B) {
- v := Participant{}
- b.ReportAllocs()
- b.ResetTimer()
- for i := 0; i < b.N; i++ {
- v.MarshalMsg(nil)
- }
-}
-
-func BenchmarkAppendMsgParticipant(b *testing.B) {
- v := Participant{}
- bts := make([]byte, 0, v.Msgsize())
- bts = v.MarshalMsg(bts[0:0])
- b.SetBytes(int64(len(bts)))
- b.ReportAllocs()
- b.ResetTimer()
- for i := 0; i < b.N; i++ {
- bts = v.MarshalMsg(bts[0:0])
- }
-}
-
-func BenchmarkUnmarshalParticipant(b *testing.B) {
- v := Participant{}
- bts := v.MarshalMsg(nil)
- b.ReportAllocs()
- b.SetBytes(int64(len(bts)))
- b.ResetTimer()
- for i := 0; i < b.N; i++ {
- _, err := v.UnmarshalMsg(bts)
- if err != nil {
- b.Fatal(err)
- }
- }
-}
-
func TestMarshalUnmarshalReveal(t *testing.T) {
partitiontest.PartitionTest(t)
v := Reveal{}