mirror of
https://github.com/balzack/databag.git
synced 2025-02-12 11:39:17 +00:00
15 lines
226 B
Go
15 lines
226 B
Go
|
package databag
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestTopicShare(t *testing.T) {
|
||
|
|
||
|
// setup testing group
|
||
|
set, err := AddTestGroup("topicshare")
|
||
|
assert.NoError(t, err)
|
||
|
PrintMsg(set)
|
||
|
}
|