mirror of
https://github.com/crazybber/go-pattern-examples.git
synced 2024-11-26 05:36:03 +03:00
9 lines
118 B
Go
9 lines
118 B
Go
package gomore
|
|
|
|
import "testing"
|
|
|
|
func TestMessageSubAndPub(t *testing.T) {
|
|
topic := Topic{}
|
|
topic.Subscribe(123)
|
|
}
|