demo2_test.go 217 B

1234567891011121314151617
  1. package test
  2. import (
  3. "fmt"
  4. "testing"
  5. )
  6. func TestDemo2(t *testing.T) {
  7. t.Run("Adapters_test", test21)
  8. }
  9. func test21(t *testing.T) {
  10. s := []int{1, 2, 3}
  11. s1 := []int{0}
  12. s1 = append(s1, s...)
  13. fmt.Println(s1)
  14. }