Skip to content
Snippets Groups Projects
Commit 74476a49 authored by Jan David Mol's avatar Jan David Mol
Browse files

L2SS-412: Migrate integration tests to asyncua and asynctest

parent 685431c9
No related branches found
No related tags found
1 merge request!142L2SS-412: Use asyncio for opcua and other clients
...@@ -8,6 +8,7 @@ ...@@ -8,6 +8,7 @@
# See LICENSE.txt for more info. # See LICENSE.txt for more info.
import unittest import unittest
import asynctest
import testscenarios import testscenarios
...@@ -23,3 +24,9 @@ class IntegrationTestCase(BaseIntegrationTestCase): ...@@ -23,3 +24,9 @@ class IntegrationTestCase(BaseIntegrationTestCase):
def setUp(self): def setUp(self):
super().setUp() super().setUp()
class IntegrationAsyncTestCase(testscenarios.WithScenarios, asynctest.TestCase):
"""Integration test case base class for all asyncio unit tests."""
def setUp(self):
super().setUp()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment