mirror of
https://github.com/weloe/token-go.git
synced 2025-10-05 15:36:50 +08:00
23 lines
426 B
Go
23 lines
426 B
Go
package util
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestAppendStr(t *testing.T) {
|
|
strings := []string{"1", "2"}
|
|
str := AppendStr(strings, "1")
|
|
str = AppendStr(str, "3")
|
|
for i, s := range strings {
|
|
if s == "1" && i == 2 {
|
|
t.Errorf("AppendStr() = %v, want %v", str, []string{"1", "2"})
|
|
}
|
|
|
|
}
|
|
for i, s := range strings {
|
|
if i == 2 && s != "3" {
|
|
t.Errorf("AppendStr() = %v, want %v", str, []string{"1", "2", "3"})
|
|
}
|
|
}
|
|
}
|