36 lines
569 B
Go
36 lines
569 B
Go
|
package option
|
||
|
|
||
|
import (
|
||
|
"reflect"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestRegOptions(t *testing.T) {
|
||
|
tests := []struct {
|
||
|
name string
|
||
|
}{
|
||
|
// TODO: Add test cases.
|
||
|
}
|
||
|
for _, tt := range tests {
|
||
|
t.Run(tt.name, func(t *testing.T) {
|
||
|
RegOptions()
|
||
|
})
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestGetOptions(t *testing.T) {
|
||
|
tests := []struct {
|
||
|
name string
|
||
|
want *Options
|
||
|
}{
|
||
|
// TODO: Add test cases.
|
||
|
}
|
||
|
for _, tt := range tests {
|
||
|
t.Run(tt.name, func(t *testing.T) {
|
||
|
if got := GetOptions(); !reflect.DeepEqual(got, tt.want) {
|
||
|
t.Errorf("GetOptions() = %v, want %v", got, tt.want)
|
||
|
}
|
||
|
})
|
||
|
}
|
||
|
}
|