mirror of
https://github.com/crazybber/awesome-patterns.git
synced 2024-11-22 12:46:03 +03:00
9 lines
89 B
Go
9 lines
89 B
Go
package factory
|
|
|
|
import "testing"
|
|
|
|
func TestSay(t *testing.T) {
|
|
say("xxx")
|
|
say("hi")
|
|
}
|