Added test to discover that the issue is already fixed.

This commit is contained in:
Matthias Koefferlein 2021-03-04 23:21:50 +01:00
parent da273c8e4b
commit beefaf40f5
1 changed files with 4 additions and 0 deletions

View File

@ -45,6 +45,8 @@ TEST (1)
lay::LayoutView *view = mw->current_view ();
view->set_title ("xyz");
ant::Service *ant_service = view->get_plugin <ant::Service> ();
tl_assert (ant_service != 0);
if (ant_service) {
@ -84,6 +86,8 @@ TEST (1)
view = mw->current_view ();
tl_assert (view != 0);
EXPECT_EQ (view->title (), "xyz");
ant_service = view->get_plugin <ant::Service> ();
tl_assert (ant_service != 0);
if (ant_service) {