Ctx returns a pointer to the global test context. During parallel test executions, Ginkgo starts one process per test "node", and each node will have its own context, which may or may not point to the same test cluster.
()
| 54 | // each node will have its own context, which may or may not point to |
| 55 | // the same test cluster. |
| 56 | func Ctx() *TestContext { |
| 57 | return &ctx |
| 58 | } |
| 59 | |
| 60 | func (ctx TestContext) Logf(f string, v ...interface{}) { |
| 61 | util.Logf(f, v...) |
no outgoing calls