This repository has been archived on 2026-07-29. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
GoEdgeNode/internal/nodes/task_ocsp_update_test.go
T

17 lines
302 B
Go

// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
package nodes_test
import (
"github.com/TeaOSLab/EdgeNode/internal/nodes"
"testing"
)
func TestOCSPUpdateTask_Loop(t *testing.T) {
var task = &nodes.OCSPUpdateTask{}
err := task.Loop()
if err != nil {
t.Fatal(err)
}
}