mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-08-28 02:44:59 +00:00
12 lines
151 B
Go
12 lines
151 B
Go
package kinesis
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestNewMain(t *testing.T) {
|
|
m := NewMain()
|
|
assert.NotNil(t, m)
|
|
}
|