mirror of
https://github.com/muety/wakapi.git
synced 2023-08-10 21:12:56 +03:00
16 lines
298 B
Go
16 lines
298 B
Go
package mocks
|
|
|
|
import (
|
|
"github.com/muety/wakapi/models"
|
|
"github.com/stretchr/testify/mock"
|
|
)
|
|
|
|
type AliasRepositoryMock struct {
|
|
mock.Mock
|
|
}
|
|
|
|
func (m *AliasRepositoryMock) GetByUser(s string) ([]*models.Alias, error) {
|
|
args := m.Called(s)
|
|
return args.Get(0).([]*models.Alias), args.Error(1)
|
|
}
|