Documentation ¶
Overview ¶
Package label contains types to manage labels for tests. Labels are treated as named values that are present or absent on a particular test.
The labels are reported through the test reporter, in the JSON output. There is currently no support for using labels to filter which tests to run, but it should be trivial to postprocess the test report using labels.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func RegisterChainLabel ¶
func RegisterChainLabel(l Chain)
RegisterChainLabel is available for external packages that may import ibctest, to register any external chain implementations they may provide.
func RegisterRelayerLabel ¶
func RegisterRelayerLabel(l Relayer)
RegisterRelayerLabel is available for external packages that may import ibctest, to register any external relayer implementations they may provide.
Types ¶
type Chain ¶
type Chain string
Chain is a label associated with a chain during tests. Chain values must be registered through RegisterChainLabel, typically inside init functions.