update channels_test.go

This commit is contained in:
nareix 2016-06-06 22:18:57 +08:00
parent df3ad04ce1
commit 60470c83ac

View File

@ -3,11 +3,14 @@ package channels
import ( import (
"fmt" "fmt"
"github.com/nareix/av" "github.com/nareix/av"
"testing"
"time" "time"
) )
func TestChannels(t *testing.T) { func ExampleChannels() {
/* Output:
complete
[xxoo]
*/
context := New() context := New()
pub, _ := context.Publish("abc") pub, _ := context.Publish("abc")
pub.WriteHeader([]av.CodecData{nil, nil}) pub.WriteHeader([]av.CodecData{nil, nil})
@ -46,7 +49,7 @@ func TestChannels(t *testing.T) {
}() }()
for i := 0; i < 4; i++ { for i := 0; i < 4; i++ {
fmt.Println(<-done) <-done
} }
fmt.Println("complete") fmt.Println("complete")