prysm-pulse/sharding/shard_test.go
Raul Jordan 1e31653514 sharding: fully functional receiver methods for shard. pre-tests
Former-commit-id: 8964a0d79f57aaef5599f6647e39fe15fdd24b9f [formerly 1c8bf6c78834b8829acdaf8a21c5ab088696a890]
Former-commit-id: e56cffa5e4884b287292bf3338f2612ed1a57ecb
2018-05-07 16:30:06 -04:00

25 lines
346 B
Go

package sharding
import (
"testing"
)
func TestShard_ValidateShardID(t *testing.T) {
tests := []struct {
headers []*CollationHeader
}{
{
headers: nil,
}, {
headers: nil,
},
}
for _, tt := range tests {
t.Logf("val: %v", tt.headers)
if 0 == 1 {
t.Fatalf("Wrong number of transactions. want=%d. got=%d", 5, 3)
}
}
}