mirror of
https://github.com/TeaOSLab/EdgeAPI.git
synced 2025-11-05 01:20:25 +08:00
11 lines
228 B
Go
11 lines
228 B
Go
|
|
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
|
||
|
|
|
||
|
|
package utils
|
||
|
|
|
||
|
|
import "testing"
|
||
|
|
|
||
|
|
func TestSplitStrings(t *testing.T) {
|
||
|
|
t.Log(SplitStrings("a, b, c", ","))
|
||
|
|
t.Log(SplitStrings("a, b, c, ", ","))
|
||
|
|
}
|