| 118 | // ### TestMapEditor ### |
| 119 | |
| 120 | TestMapEditor::TestMapEditor(Map* map) |
| 121 | { |
| 122 | window = new MainWindow(); |
| 123 | editor = new MapEditorController(MapEditorController::MapEditor, map); |
| 124 | window->setController(editor); |
| 125 | map_widget = editor->getMainWidget(); |
| 126 | } |
| 127 | |
| 128 | TestMapEditor::~TestMapEditor() |
| 129 | { |
nothing calls this directly
no test coverage detected