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