aboutsummaryrefslogtreecommitdiff
path: root/pkg/job/job_test.go
blob: cb50e31040dcea7252e674e139bb1224224e02cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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)
			}
		})
	}
}