mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
19 lines
491 B
Go
19 lines
491 B
Go
package backend
|
|
|
|
// ShuffleTest --
|
|
type ShuffleTest struct {
|
|
Title string `yaml:"title"`
|
|
Summary string `yaml:"summary"`
|
|
TestSuite string `yaml:"test_suite"`
|
|
Fork string `yaml:"fork"`
|
|
Version string `yaml:"version"`
|
|
TestCases []*ShuffleTestCase `yaml:"test_cases"`
|
|
}
|
|
|
|
// ShuffleTestCase --
|
|
type ShuffleTestCase struct {
|
|
Input []uint64 `yaml:"input,flow"`
|
|
Output []uint64 `yaml:"output,flow"`
|
|
Seed string
|
|
}
|