| 9 | namespace tests_support |
| 10 | { |
| 11 | void SetUpEditorForTesting(std::unique_ptr<osm::Editor::Delegate> delegate) |
| 12 | { |
| 13 | auto & editor = osm::Editor::Instance(); |
| 14 | editor.SetDelegate(std::move(delegate)); |
| 15 | editor.SetStorageForTesting(std::make_unique<editor::InMemoryStorage>()); |
| 16 | editor.ClearAllLocalEdits(); |
| 17 | editor.ResetNotes(); |
| 18 | } |
| 19 | |
| 20 | void TearDownEditorForTesting() |
| 21 | { |