We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3cf6978 commit b914846Copy full SHA for b914846
1 file changed
src/pymapmanager/tests/interface/test_channel_editor.py
@@ -0,0 +1,18 @@
1
+import pytest
2
+
3
+from mapmanagercore.data import getTiffChannel_1
4
5
+from pymapmanager.interface import PyMapManagerApp
6
7
+# this makes qapp be our PyMapManagerApp, it is derived from QApplication
8
+@pytest.fixture(scope="session")
9
+def qapp_cls():
10
+ return PyMapManagerApp
11
12
+def test_plugins_empty(qtbot, qapp):
13
14
+ mmapPath = getTiffChannel_1()
15
+ sw = qapp.loadStackWidget(mmapPath)
16
17
+ pluginName = 'Channel Editor'
18
+ sw.runPlugin(pluginName)
0 commit comments