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

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