mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-07 18:21:20 +00:00
27 lines
374 B
Go
27 lines
374 B
Go
|
package benchutil
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestPreGenFullBlock(t *testing.T) {
|
||
|
_, err := PreGenFullBlock()
|
||
|
if err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestPreGenState1Epoch(t *testing.T) {
|
||
|
_, err := PreGenFullBlock()
|
||
|
if err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestPreGenState2FullEpochs(t *testing.T) {
|
||
|
_, err := PreGenFullBlock()
|
||
|
if err != nil {
|
||
|
t.Fatal(err)
|
||
|
}
|
||
|
}
|