github.com/sercand/please@v13.4.0+incompatible/test/go_rules/cover-test/cover_test.go (about)

     1  package covertest
     2  
     3  import (
     4  	"testing"
     5  
     6  	"github.com/stretchr/testify/assert"
     7  
     8  	pb "github.com/thought-machine/please/test/go_rules/cover-test/test-proto"
     9  )
    10  
    11  func TestProto(t *testing.T) {
    12  	// Not much to be done here, the real test is that this has compiled.
    13  	msg := &pb.Test{S: "test"}
    14  	assert.Equal(t, "test", msg.S)
    15  }