Files
apinto/resources/cache_test.go
zhangzeyi c6ff82cbd4 优化
2022-10-19 15:21:29 +08:00

23 lines
286 B
Go

package resources
import "testing"
func TestReplace(t *testing.T) {
type args struct {
caches []ICache
}
tests := []struct {
name string
args args
}{
{
name: "nil",
args: args{nil},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
})
}
}