Files
gfast/test/demo2_test.go
T
2020-03-10 18:05:09 +08:00

18 lines
217 B
Go

package test
import (
"fmt"
"testing"
)
func TestDemo2(t *testing.T) {
t.Run("Adapters_test", test21)
}
func test21(t *testing.T) {
s := []int{1, 2, 3}
s1 := []int{0}
s1 = append(s1, s...)
fmt.Println(s1)
}