SetupTest 每个测试前创建新的 Actor 系统
()
| 25 | |
| 26 | // SetupTest 每个测试前创建新的 Actor 系统 |
| 27 | func (s *ActorSuite) SetupTest() { |
| 28 | s.system = actor.NewSystem("test") |
| 29 | } |
| 30 | |
| 31 | // TearDownTest 每个测试后关闭 Actor 系统 |
| 32 | func (s *ActorSuite) TearDownTest() { |
nothing calls this directly
no test coverage detected