demo2_test.go 236 B

1234567891011121314151617
  1. package test
  2. import (
  3. "fmt"
  4. "github.com/gogf/gf/util/grand"
  5. "testing"
  6. )
  7. func TestDemo2(t *testing.T) {
  8. t.Run("Adapters_test", test21)
  9. }
  10. func test21(t *testing.T) {
  11. for i := 0; i < 10; i++ {
  12. fmt.Println(grand.Letters(10))
  13. }
  14. }