22 lines
506 B
Go
22 lines
506 B
Go
// +build conftests
|
|
|
|
// ------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation and Dapr Contributors.
|
|
// Licensed under the MIT License.
|
|
// ------------------------------------------------------------
|
|
|
|
package conformance
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestSecretStoreConformance(t *testing.T) {
|
|
tc, err := NewTestConfiguration("../config/secretstores/tests.yml")
|
|
assert.NoError(t, err)
|
|
assert.NotNil(t, tc)
|
|
tc.Run(t)
|
|
}
|