1 module test.dli.mock_menu_item;
2 
3 import dli.text_menu : MenuItem;
4 
5 ///
6 public class MockMenuItem : MenuItem
7 {
8     private bool _executed;
9 
10     /// Whether the item has been executed or not.
11     @property
12     public bool executed() const
13     {
14         return _executed;
15     }
16 
17     ///
18     this(string displayString = "mockMenuItem", bool enabled = true)
19     {
20         super(displayString, {_executed = true;}, enabled);
21     }
22 }