2024-07-01 21:54:18 +00:00
|
|
|
// Copyright 2024 Matthew Rich <matthewrich.conf@gmail.com>. All rights reserved.
|
|
|
|
|
|
|
|
package config
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestNewGenericConfig(t *testing.T) {
|
2024-07-17 08:34:57 +00:00
|
|
|
g := NewGeneric[any]()
|
2024-07-01 21:54:18 +00:00
|
|
|
assert.NotNil(t, g)
|
|
|
|
}
|