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.
32 lines
405 B
Go
32 lines
405 B
Go
package syncx
|
|
|
|
import (
|
|
"sync"
|
|
"testing"
|
|
)
|
|
|
|
func TestDoneChanClose(t *testing.T) {
|
|
doneChan := NewDoneChan()
|
|
|
|
for i := 0; i < 5; i++ {
|
|
doneChan.Close()
|
|
}
|
|
}
|
|
|
|
func TestDoneChanDone(t *testing.T) {
|
|
var waitGroup sync.WaitGroup
|
|
doneChan := NewDoneChan()
|
|
|
|
waitGroup.Add(1)
|
|
go func() {
|
|
<-doneChan.Done()
|
|
waitGroup.Done()
|
|
}()
|
|
|
|
for i := 0; i < 5; i++ {
|
|
doneChan.Close()
|
|
}
|
|
|
|
waitGroup.Wait()
|
|
}
|