Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type TestDesc ¶
type TestDesc struct {
Name string
}
TestDesc is used for describing a single test of some test suite. This structure is required by revel test cmd.
type TestResult ¶
TestResult represents the results of running a single test of some test suite. This structure is required by revel test cmd.
type TestSuiteDesc ¶
type TestSuiteDesc struct { Name string Tests []TestDesc // Elem is reflect.Type which can be used for accessing methods // of the test suite. Elem reflect.Type }
TestSuiteDesc is used for storing information about a single test suite. This structure is required by revel test cmd.
type TestSuiteResult ¶
type TestSuiteResult struct { Name string Passed bool Results []TestResult }
TestSuiteResult stores the results the whole test suite. This structure is required by revel test cmd.
Click to show internal directories.
Click to hide internal directories.