MCPcopy Create free account
hub / github.com/RainbowMango/GoExpertProgramming / TestSub

Function TestSub

source/gotest/subunit_test.go:46–54  ·  view source on GitHub ↗

TestSub 内部调用sub1、sub2和sub3三个子测试

(t *testing.T)

Source from the content-addressed store, hash-verified

44
45// TestSub 内部调用sub1、sub2和sub3三个子测试
46func TestSub(t *testing.T) {
47 // setup code
48
49 t.Run("A=1", sub1)
50 t.Run("A=2", sub2)
51 t.Run("B=1", sub3)
52
53 // tear-down code
54}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected