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