12 lines
152 B
Go
12 lines
152 B
Go
package utils
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestRandom1(t *testing.T) {
|
|
fmt.Println(GetPseudoRandomCode(6))
|
|
fmt.Println(GetTrueRandomCode(6))
|
|
}
|