goc/tests/diff_test.go

27 lines
353 B
Go
Raw Normal View History

2023-09-07 08:57:22 +00:00
package tests
import "testing"
func Test_diff(t *testing.T) {
type args struct {
target string
}
tests := []struct {
name string
args args
}{
// TODO: Add test cases.
{
name: "test",
args: args{
target: "1a3484",
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
diff(tt.args.target)
})
}
}