mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 12:57:18 +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 []uint32 `yaml:"input,flow"`
|
||
|
Output []uint32 `yaml:"output,flow"`
|
||
|
Seed string
|
||
|
}
|