16 lines
244 B
Go
16 lines
244 B
Go
package dfs
|
|
|
|
import (
|
|
"log"
|
|
"testing"
|
|
)
|
|
|
|
func TestDfs(t *testing.T) {
|
|
c := newCos()
|
|
data, err := c.GetObj("Default_Update/AndroidTest/REMAIN-ServerList.bytes")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
log.Printf("file content:%v", string(data))
|
|
}
|