mirror of
				https://github.com/TeaOSLab/EdgeAPI.git
				synced 2025-11-04 16:00:24 +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, ", ","))
 | 
						|
}
 |