mirror of
https://github.com/crazybber/go-pattern-examples.git
synced 2024-11-22 20:06:02 +03:00
16 lines
256 B
Go
16 lines
256 B
Go
package option
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestFileFunctionOptions(t *testing.T) {
|
|
|
|
Introduce("tom", Gender(true), Company("land company"))
|
|
|
|
Introduce("lily", Company("sky commnay"), UID(123))
|
|
|
|
Introduce("admin", Company("risky commnay"), UID(883))
|
|
|
|
}
|