statping/core/core_test.go

16 lines
185 B
Go
Raw Normal View History

package core
import (
"github.com/stretchr/testify/assert"
"testing"
)
var (
testCore *Core
)
func TestNewCore(t *testing.T) {
testCore = NewCore()
assert.NotNil(t, testCore)
}