Test basic command creation and properties.
(self)
| 48 | """Test the CommandBase abstract class and basic functionality.""" |
| 49 | |
| 50 | def test_command_creation(self): |
| 51 | """Test basic command creation and properties.""" |
| 52 | cmd = MockCommand("Test Command") |
| 53 | self.assertEqual(cmd.get_description(), "Test Command") |
| 54 | self.assertFalse(cmd.is_executed()) |
| 55 | self.assertFalse(cmd.is_undone()) |
| 56 | |
| 57 | def test_command_execution(self): |
| 58 | """Test command execution tracking.""" |
nothing calls this directly
no test coverage detected