mirror of
https://github.com/fxkt-tech/liv
synced 2025-09-26 20:11:20 +08:00
21 lines
275 B
Go
21 lines
275 B
Go
package naming_test
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/fxkt-tech/liv/fftool/naming"
|
|
)
|
|
|
|
func TestGen(t *testing.T) {
|
|
nm := naming.New()
|
|
name := nm.Gen()
|
|
fmt.Println(name)
|
|
}
|
|
|
|
func TestGen64(t *testing.T) {
|
|
nm := naming.New()
|
|
name := nm.Gen64()
|
|
fmt.Println(name)
|
|
}
|