Files
graphql-monitoring-proxy/config/config_test.go
T
2025-02-26 00:47:41 +00:00

14 lines
296 B
Go

package libpack_config
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestConfigConstants(t *testing.T) {
// Verify package constants are defined
assert.NotEmpty(t, PKG_NAME, "PKG_NAME should be defined")
assert.NotEmpty(t, PKG_VERSION, "PKG_VERSION should be defined")
}