15 lines
202 B
Go
15 lines
202 B
Go
package test_utils
|
|
|
|
import (
|
|
"github.com/stretchr/testify/assert"
|
|
"testing"
|
|
)
|
|
|
|
func TestGetConfig(t *testing.T) {
|
|
assert.Empty(t, ConfigData)
|
|
|
|
InitTestProvider(t)
|
|
|
|
assert.NotEmpty(t, ConfigData)
|
|
}
|