github.com/instana/go-sensor@v1.62.2-0.20240520081010-4919868049e1/acceptor/runtime_test.go (about)

     1  // (c) Copyright IBM Corp. 2021
     2  // (c) Copyright Instana Inc. 2020
     3  
     4  package acceptor_test
     5  
     6  import (
     7  	"testing"
     8  
     9  	"github.com/instana/go-sensor/acceptor"
    10  	"github.com/stretchr/testify/assert"
    11  )
    12  
    13  func TestNewGoProcessPluginPayload(t *testing.T) {
    14  	data := acceptor.GoProcessData{
    15  		PID: 42,
    16  	}
    17  
    18  	assert.Equal(t, acceptor.PluginPayload{
    19  		Name:     "com.instana.plugin.golang",
    20  		EntityID: "42",
    21  		Data:     data,
    22  	}, acceptor.NewGoProcessPluginPayload(data))
    23  }