-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make new result processor implementation in go
- Loading branch information
1 parent
44e497c
commit 46ca7da
Showing
29 changed files
with
1,361 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
package results | ||
|
||
//go:generate enumer -type=ComparisonOperator | ||
type ComparisonOperator int | ||
|
||
const ( | ||
// Eq is Equal to | ||
Eq ComparisonOperator = iota | ||
// Gele is Greater than or Equal to and Less than or Equal to | ||
Gele | ||
// Gtlt is Greater than and Less than | ||
Gtlt | ||
// Gt is Greater than | ||
Gt | ||
// Lt is Less than | ||
Lt | ||
// Ge is Greater than | ||
Ge | ||
// Le is Less than | ||
Le | ||
// Log is logging the value without comparison | ||
Log | ||
) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package results | ||
|
||
import ( | ||
"github.com/google/uuid" | ||
) | ||
|
||
type Generator interface { | ||
Generate( | ||
testID uuid.UUID, | ||
sequenceName string, | ||
tagSubmissions map[string]TagSubmission, | ||
errorSubmissions []error, | ||
overallPassFail bool, | ||
outputDir string, | ||
) error | ||
} |
Oops, something went wrong.