19 lines
251 B
Plaintext
19 lines
251 B
Plaintext
type Fixtures struct {
|
|
version String
|
|
comments String
|
|
valid [Vector]
|
|
invalid [Vector]
|
|
}
|
|
|
|
type Vector struct {
|
|
name String
|
|
description String
|
|
invocation Bytes
|
|
proofs [Bytes]
|
|
error optional Error
|
|
}
|
|
|
|
type Error struct {
|
|
name String
|
|
}
|