Skip to content

Commit

Permalink
Added forgotten types file
Browse files Browse the repository at this point in the history
  • Loading branch information
theseion committed Apr 6, 2022
1 parent 5055498 commit 6d23a91
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions runner/types.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
package runner

import (
"time"

"github.com/fzipi/go-ftw/ftwhttp"
)

// TestRunContext carries information about the current test run.
// This includes both configuration information as well as statistics
// and results.
type TestRunContext struct {
Include string
Exclude string
ShowTime bool
Output bool
Stats TestStats
Result TestResult
Duration time.Duration
Client *ftwhttp.Client
}

0 comments on commit 6d23a91

Please sign in to comment.