prysm-pulse/testing/benchmark/pregen_test.go
terence 5a66807989
Update to V5 (#13622)
* First take at updating everything to v5

* Patch gRPC gateway to use prysm v5

Fix patch

* Update go ssz

---------

Co-authored-by: Preston Van Loon <pvanloon@offchainlabs.com>
2024-02-15 05:46:47 +00:00

23 lines
405 B
Go

package benchmark
import (
"testing"
"github.com/prysmaticlabs/prysm/v5/testing/require"
)
func TestPreGenFullBlock(t *testing.T) {
_, err := PreGenFullBlock()
require.NoError(t, err)
}
func TestPreGenState1Epoch(t *testing.T) {
_, err := PreGenState1Epoch()
require.NoError(t, err)
}
func TestPreGenstateFullEpochs(t *testing.T) {
_, err := PreGenstateFullEpochs()
require.NoError(t, err)
}