Skip to content
Snippets Groups Projects
base.py 482 B
Newer Older
# -*- coding: utf-8 -*-
#
# This file is part of the LOFAR 2.0 Station Software
#
#
#
# Distributed under the terms of the APACHE license.
# See LICENSE.txt for more info.

class BaseTestCase(testscenarios.WithScenarios, unittest.TestCase):
    """Test base class."""

    def setUp(self):
        super().setUp()


class TestCase(BaseTestCase):
    """Test case base class for all unit tests."""

    def setUp(self):
        super().setUp()