mirror of
https://github.com/tengge1/ShadowEditor.git
synced 2026-01-25 15:08:11 +00:00
12 lines
187 B
Go
12 lines
187 B
Go
package helper
|
|
|
|
import "testing"
|
|
|
|
func TestGetAllOperatingAuthorities(t *testing.T) {
|
|
authorities := GetAllOperatingAuthorities()
|
|
|
|
for _, item := range authorities {
|
|
t.Log(item)
|
|
}
|
|
}
|