github.com/kubeshop/testkube@v1.17.23/pkg/api/v1/testkube/model_execution_result_step.go (about)

     1  /*
     2   * testkube
     3   *
     4   * Efficient testing of k8s applications mandates a k8s native approach to test mgmt/definition/execution - testkube provides a “quality control plane” that natively integrates testing activities into k8s development and operational workflows
     5   *
     6   * API version: 0.0.5
     7   * Contact: api@testkube.io
     8   * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git)
     9   */
    10  package testkube
    11  
    12  import (
    13  	"time"
    14  )
    15  
    16  // execution result data
    17  type ExecutionResultStep struct {
    18  	// step name
    19  	Name string `json:"name,omitempty"`
    20  	// test execution start time
    21  	StartTime time.Time `json:"startTime,omitempty"`
    22  	// test execution start time
    23  	EndTime time.Time `json:"endTime,omitempty"`
    24  	// execution step status
    25  	Status     string                        `json:"status,omitempty"`
    26  	Assertions *ExecutionResultStepAssertion `json:"assertions,omitempty"`
    27  }