mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 12:20:27 +08:00
14 lines
177 B
Go
14 lines
177 B
Go
package shared
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestHeaderList_FormatHeaders(t *testing.T) {
|
|
list := NewHTTPHeaderPolicy()
|
|
err := list.Init()
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
}
|