Make sure mock implementations implements their full interface

This commit is contained in:
Deluan
2020-01-11 21:52:39 -05:00
parent cb107f77f8
commit dd5945ad86
4 changed files with 12 additions and 2 deletions
+2
View File
@@ -36,3 +36,5 @@ func (m *MockArtistIndex) GetAll() (domain.ArtistIndexes, error) {
}
return m.data, nil
}
var _ domain.ArtistIndexRepository = (*MockArtistIndex)(nil)