issue24161_darwin_test.go 630 B

12345678910111213141516171819202122232425262728293031
  1. // Copyright 2018 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. package cgotest
  5. import (
  6. "testing"
  7. "cgotest/issue24161arg"
  8. "cgotest/issue24161e0"
  9. "cgotest/issue24161e1"
  10. "cgotest/issue24161e2"
  11. "cgotest/issue24161res"
  12. )
  13. func Test24161Arg(t *testing.T) {
  14. issue24161arg.Test(t)
  15. }
  16. func Test24161Res(t *testing.T) {
  17. issue24161res.Test(t)
  18. }
  19. func Test24161Example0(t *testing.T) {
  20. issue24161e0.Test(t)
  21. }
  22. func Test24161Example1(t *testing.T) {
  23. issue24161e1.Test(t)
  24. }
  25. func Test24161Example2(t *testing.T) {
  26. issue24161e2.Test(t)
  27. }