Documentation ¶
Index ¶
- Variables
- type Test
- func (*Test) Descriptor() ([]byte, []int)deprecated
- func (x *Test) GetDescription() string
- func (x *Test) GetExec() string
- func (x *Test) GetId() string
- func (x *Test) GetReadme() []string
- func (x *Test) GetVersion() uint32
- func (*Test) ProtoMessage()
- func (x *Test) ProtoReflect() protoreflect.Message
- func (x *Test) Reset()
- func (x *Test) String() string
- type TestRegistry
- func (*TestRegistry) Descriptor() ([]byte, []int)deprecated
- func (x *TestRegistry) GetName() string
- func (x *TestRegistry) GetTest() []*Test
- func (*TestRegistry) ProtoMessage()
- func (x *TestRegistry) ProtoReflect() protoreflect.Message
- func (x *TestRegistry) Reset()
- func (x *TestRegistry) String() string
Constants ¶
This section is empty.
Variables ¶
View Source
var File_testregistry_proto protoreflect.FileDescriptor
Functions ¶
This section is empty.
Types ¶
type Test ¶
type Test struct { // id -- Test ID, required, must be unique, must match the regex: // // [A-Z][A-Z]+\-[0-9]+(\.[0-9]+)? // Test ID should match the rundata.TestPlanID of the linked exec. // For example: AA-1.1 Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id,omitempty"` // version -- should be incremented each time any changes are made to the // // Test message instance for a given Test ID. Version uint32 `protobuf:"varint,2,opt,name=version,proto3" json:"version,omitempty"` // description -- should be a human readable common name for the Test Description string `protobuf:"bytes,3,opt,name=description,proto3" json:"description,omitempty"` // readme -- must be a URL, should be a link to the human readable // // readme.md or other documentation describing the test Readme []string `protobuf:"bytes,4,rep,name=readme,proto3" json:"readme,omitempty"` // exec -- must be a URL, may be a link to google3 code, should be a // // link to an ondatra test in the public repo location Exec string `protobuf:"bytes,5,opt,name=exec,proto3" json:"exec,omitempty"` // contains filtered or unexported fields }
Test specifies resources for a single functional test that applies to a Feature. It
func (*Test) Descriptor
deprecated
func (*Test) GetDescription ¶
func (*Test) GetVersion ¶
func (*Test) ProtoMessage ¶
func (*Test) ProtoMessage()
func (*Test) ProtoReflect ¶
func (x *Test) ProtoReflect() protoreflect.Message
type TestRegistry ¶
type TestRegistry struct { // name -- the human readable name of this TestSuite Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"` Test []*Test `protobuf:"bytes,2,rep,name=test,proto3" json:"test,omitempty"` // contains filtered or unexported fields }
func (*TestRegistry) Descriptor
deprecated
func (*TestRegistry) Descriptor() ([]byte, []int)
Deprecated: Use TestRegistry.ProtoReflect.Descriptor instead.
func (*TestRegistry) GetName ¶
func (x *TestRegistry) GetName() string
func (*TestRegistry) GetTest ¶
func (x *TestRegistry) GetTest() []*Test
func (*TestRegistry) ProtoMessage ¶
func (*TestRegistry) ProtoMessage()
func (*TestRegistry) ProtoReflect ¶
func (x *TestRegistry) ProtoReflect() protoreflect.Message
func (*TestRegistry) Reset ¶
func (x *TestRegistry) Reset()
func (*TestRegistry) String ¶
func (x *TestRegistry) String() string
Click to show internal directories.
Click to hide internal directories.