mirror of https://github.com/statping/statping
16 lines
185 B
Go
16 lines
185 B
Go
![]() |
package core
|
||
|
|
||
|
import (
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
testCore *Core
|
||
|
)
|
||
|
|
||
|
func TestNewCore(t *testing.T) {
|
||
|
testCore = NewCore()
|
||
|
assert.NotNil(t, testCore)
|
||
|
}
|