ReleaseTesting is the action for testing a release. It provides the implementation of 'helm test'.
| 41 | // |
| 42 | // It provides the implementation of 'helm test'. |
| 43 | type ReleaseTesting struct { |
| 44 | cfg *Configuration |
| 45 | Timeout time.Duration |
| 46 | WaitOptions []kube.WaitOption |
| 47 | // Used for fetching logs from test pods |
| 48 | Namespace string |
| 49 | Filters map[string][]string |
| 50 | } |
| 51 | |
| 52 | // NewReleaseTesting creates a new ReleaseTesting object with the given configuration. |
| 53 | func NewReleaseTesting(cfg *Configuration) *ReleaseTesting { |
nothing calls this directly
no outgoing calls
no test coverage detected