Skip to content
Snippets Groups Projects
Commit aab254b6 authored by Corné Lukken's avatar Corné Lukken
Browse files

Add test folder files and __init__ support files

parent b51b7fe0
No related branches found
No related tags found
1 merge request!58L2SS-259: Integrate unit tests using Continuous Integration (CI)
from ._version import get_versions import pbr.version
__version__ = get_versions()['version']
del get_versions __version__ = pbr.version.VersionInfo(
'TangoStationControl').version_string()
# from ._version import get_versions
# __version__ = get_versions()['version']
# del get_versions
# -*- coding: utf-8 -*-
#
# This file is part of the PCC project
#
#
#
# Distributed under the terms of the APACHE license.
# See LICENSE.txt for more info.
import testscenarios
class BaseTestCase(testscenarios.WithScenarios):
"""Test base class."""
def setUp(self):
super().setUp()
class TestCase(BaseTestCase):
"""Test case base class for all unit tests."""
def setUp(self):
super().setUp()
# -*- coding: utf-8 -*-
#
# This file is part of the PCC project
#
#
#
# Distributed under the terms of the APACHE license.
# See LICENSE.txt for more info.
from devices.SDP import SDP
from devices.test import base
class TestSDP(base.TestCase):
def setUp(self):
super(TestSDP, self).setUp()
def test_example(self):
self.assertEqual(5, 5)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment