/// <inheritdoc /> public void Visit(IKeyboardHotkey hotkey) { hotkey?.PerformAction(); }
public void SetUp() { this.visitor = new KeyboardHotkeyVisitor(); this.fakeHotkey = A.Fake <IKeyboardHotkey>(); }