x_test.go 174 B

12345678910111213
  1. package cgomixmode
  2. import (
  3. "log"
  4. "testing"
  5. x "git.wecise.com/wecise/cgotest/cgomixmode/x"
  6. )
  7. func Test_CGOMM(t *testing.T) {
  8. log.Println("Hello from test")
  9. x.Run()
  10. }