github.com/cozy/cozy-stack@v0.0.0-20240603063001-31110fa4cae1/model/instance/service_test.go (about)

     1  package instance
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/stretchr/testify/assert"
     7  )
     8  
     9  func TestInstanceImplementations(t *testing.T) {
    10  	assert.Implements(t, (*Service)(nil), new(Mock))
    11  	assert.Implements(t, (*Service)(nil), new(InstanceService))
    12  }