github.com/mier85/go-sensor@v1.30.1-0.20220920111756-9bf41b3bc7e0/autoprofile/internal/uuid_test.go (about)

     1  // (c) Copyright IBM Corp. 2021
     2  // (c) Copyright Instana Inc. 2020
     3  
     4  package internal_test
     5  
     6  import (
     7  	"testing"
     8  
     9  	"github.com/instana/testify/assert"
    10  	"github.com/mier85/go-sensor/autoprofile/internal"
    11  )
    12  
    13  func TestGenerateUUID_Unique(t *testing.T) {
    14  	assert.NotEqual(t, internal.GenerateUUID(), internal.GenerateUUID())
    15  }