// Copyright 2024 Matthew Rich . All rights reserved. package config import ( "github.com/stretchr/testify/assert" "testing" ) func TestNewGenericConfig(t *testing.T) { g := NewGeneric[any]() assert.NotNil(t, g) }