1
0
Fork 0

Updated for go 1.16 modules

This commit is contained in:
Julien Dessaux 2021-04-23 16:51:22 +02:00
parent 8278d7b471
commit 38d9c881b3
25 changed files with 25 additions and 19 deletions

33
pkg/job/job_test.go Normal file
View file

@ -0,0 +1,33 @@
package job
import (
"testing"
)
func TestJob_String(t *testing.T) {
type fields struct {
Name string
Timestamp uint64
Success bool
}
tests := []struct {
name string
fields fields
want string
}{
{"default job", fields{}, "Job { Name: \"\", Timestamp: \"0\", Success: \"false\" }"},
{"a job", fields{Name: "a", Timestamp: 10, Success: true}, "Job { Name: \"a\", Timestamp: \"10\", Success: \"true\" }"},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
job := Job{
Name: tt.fields.Name,
Timestamp: tt.fields.Timestamp,
Success: tt.fields.Success,
}
if got := job.String(); got != tt.want {
t.Errorf("Job.String() = %v, want %v", got, tt.want)
}
})
}
}