Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cannot see any mock sample data when generating tests #159

Open
dev2021-ctrl opened this issue May 16, 2021 · 1 comment
Open

Cannot see any mock sample data when generating tests #159

dev2021-ctrl opened this issue May 16, 2021 · 1 comment

Comments

@dev2021-ctrl
Copy link

dev2021-ctrl commented May 16, 2021

Everytime i generate test cases ,it gives me same skeleton code like below wihtout adding any actual testing values in the code.
May be I am missing something.
Can somebody please advise.A bit urgent
All test cases have comments " TODO: Add test cases." Does this package not support it ?

Sample test code generated with this package

func TestBit_Value(t *testing.T) {
tests := []struct {
name string
b Bit
want driver.Value
wantErr bool
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := tt.b.Value()
if (err != nil) != tt.wantErr {
t.Errorf("Bit.Value() error = %v, wantErr %v", err, tt.wantErr)
return
}
if !reflect.DeepEqual(got, tt.want) {
t.Errorf("Bit.Value() = %v, want %v", got, tt.want)
}
})
}
}

@butuzov
Copy link
Contributor

butuzov commented May 19, 2021

this tool generates only a skeleton for the test table, it's your responsibility to provide test cases. How can we define the initial value for b Bit or driver.Value?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants