fusenapi/shared/main_test.go

20 lines
204 B
Go
Raw Normal View History

2023-08-09 08:54:52 +00:00
package shared
2023-07-25 11:32:51 +00:00
import "testing"
func TestMain(t *testing.T) {
test1()
}
2023-08-09 11:02:50 +00:00
func TestNodeA(t *testing.T) {
test1()
}
func TestNodeB(t *testing.T) {
test1()
}
func TestNodeC(t *testing.T) {
test1()
}