次の性質を考えると、インターフェイスの最適な名前は何ですか?該当する場合、これはどのデザインパターンですか?
public interface ITestEvent??? { // Handler / Listener / Observer / Emitter / ???
void OnBeginTesting(ITestContext context);
void OnException(Exception ex);
void OnEndTesting();
}
public class MyTestEvent??? : ITestEvent { ... }
Tester.Add???(new MyTestEvent???());