You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
456 B
Go
38 lines
456 B
Go
package threading
|
|
|
|
import (
|
|
"io/ioutil"
|
|
"log"
|
|
"testing"
|
|
|
|
"zero/core/lang"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestRoutineId(t *testing.T) {
|
|
assert.True(t, RoutineId() > 0)
|
|
}
|
|
|
|
func TestRunSafe(t *testing.T) {
|
|
log.SetOutput(ioutil.Discard)
|
|
|
|
i := 0
|
|
|
|
defer func() {
|
|
assert.Equal(t, 1, i)
|
|
}()
|
|
|
|
ch := make(chan lang.PlaceholderType)
|
|
go RunSafe(func() {
|
|
defer func() {
|
|
ch <- lang.Placeholder
|
|
}()
|
|
|
|
panic("panic")
|
|
})
|
|
|
|
<-ch
|
|
i++
|
|
}
|