mirror of https://github.com/KLayout/klayout.git
Added test to discover that the issue is already fixed.
This commit is contained in:
parent
da273c8e4b
commit
beefaf40f5
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue