wip, chore: update tests

This commit is contained in:
august-alt 2022-04-01 22:45:08 +04:00
parent 18a5d6f837
commit 02c10cd8f7
2 changed files with 0 additions and 14 deletions

View File

@ -107,13 +107,6 @@ void PresentationBuilderTest::build()
auto registry = std::make_shared<model::registry::Registry>();
auto polRegistrySource = std::make_unique<model::registry::PolRegistrySource>(registry);
auto group = std::make_unique<model::command::CommandGroup>();
auto layout = PresentationBuilder::build(presentation, *policy, *polRegistrySource, *group);
auto widget = std::make_unique<QWidget>();
widget->setLayout(layout);
widget->show();
QTest::qWait(1000);
}
}

View File

@ -72,13 +72,6 @@ void AdmlTest::read()
auto registry = std::make_shared<model::registry::Registry>();
auto polRegistrySource = std::make_unique<model::registry::PolRegistrySource>(registry);
auto group = std::make_unique<model::command::CommandGroup>();
auto layout = gui::PresentationBuilder::build(presentation, *policy, *polRegistrySource, *group);
auto widget = std::make_unique<QWidget>();
widget->setLayout(layout);
widget->show();
QTest::qWait(10000);
}
}
}