mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-12-12 01:10:36 +00:00
27 lines
807 B
Go
27 lines
807 B
Go
|
package csharpinterop
|
||
|
|
||
|
// VMUnitTest is a struct for capturing the fields in the json files
|
||
|
type VMUnitTest struct {
|
||
|
Category string `json:"category"`
|
||
|
Name string `json:"name"`
|
||
|
Tests []struct {
|
||
|
Name string `json:"name"`
|
||
|
Script string `json:"script"`
|
||
|
Steps []struct {
|
||
|
Actions []string `json:"actions"`
|
||
|
Result struct {
|
||
|
State string `json:"state"`
|
||
|
InvocationStack []struct {
|
||
|
ScriptHash string `json:"scriptHash"`
|
||
|
InstructionPointer int `json:"instructionPointer"`
|
||
|
NextInstruction string `json:"nextInstruction"`
|
||
|
EvaluationStack []struct {
|
||
|
Type string `json:"type"`
|
||
|
Value string `json:"value"`
|
||
|
} `json:"evaluationStack"`
|
||
|
} `json:"invocationStack"`
|
||
|
} `json:"result"`
|
||
|
} `json:"steps"`
|
||
|
} `json:"tests"`
|
||
|
}
|