12 lines
151 B
Go
12 lines
151 B
Go
package threading
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestRoutineId(t *testing.T) {
|
|
assert.True(t, RoutineId() > 0)
|
|
}
|