mirror of
https://github.com/crazybber/go-pattern-examples.git
synced 2025-02-20 02:43:13 +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)
|
|
}
|