attributes_test.go 253 B

123456789101112
  1. package trace
  2. import (
  3. "testing"
  4. "github.com/stretchr/testify/assert"
  5. gcodes "google.golang.org/grpc/codes"
  6. )
  7. func TestStatusCodeAttr(t *testing.T) {
  8. assert.Equal(t, GRPCStatusCodeKey.Int(int(gcodes.DataLoss)), StatusCodeAttr(gcodes.DataLoss))
  9. }