Skip to content

Commit

Permalink
refactor: make mockgen
Browse files Browse the repository at this point in the history
  • Loading branch information
kakcy committed Jan 31, 2025
1 parent 11b6517 commit 8f3598f
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions pkg/experiment/api/goal_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,14 @@ import (
"context"
"testing"

"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"go.uber.org/mock/gomock"
"google.golang.org/genproto/googleapis/rpc/errdetails"
"google.golang.org/grpc/metadata"
gstatus "google.golang.org/grpc/status"
"google.golang.org/protobuf/types/known/wrapperspb"

autoopsclientmock "github.com/bucketeer-io/bucketeer/pkg/autoops/client/mock"
"github.com/bucketeer-io/bucketeer/pkg/experiment/domain"
v2es "github.com/bucketeer-io/bucketeer/pkg/experiment/storage/v2"
Expand All @@ -28,13 +36,6 @@ import (
accountproto "github.com/bucketeer-io/bucketeer/proto/account"
autoopsproto "github.com/bucketeer-io/bucketeer/proto/autoops"
experimentproto "github.com/bucketeer-io/bucketeer/proto/experiment"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"go.uber.org/mock/gomock"
"google.golang.org/genproto/googleapis/rpc/errdetails"
"google.golang.org/grpc/metadata"
gstatus "google.golang.org/grpc/status"
"google.golang.org/protobuf/types/known/wrapperspb"
)

func TestGetGoalMySQL(t *testing.T) {
Expand Down

0 comments on commit 8f3598f

Please sign in to comment.