diff options
author | Eddy Pedroni <eddy@0xf7.com> | 2022-05-24 13:17:04 +0200 |
---|---|---|
committer | Eddy Pedroni <eddy@0xf7.com> | 2022-05-24 13:17:04 +0200 |
commit | 47873fc9a211f0f74e7f3f312abdf6f21c7b2f91 (patch) | |
tree | 6fd0701c0ab47fb1c94cd0097453296b818e1c2c /lab_control/test | |
parent | 83e3b55f9986326c213efbdc8ac20559577362c0 (diff) |
Added gitignore, restructured repo, added initial tests
Diffstat (limited to 'lab_control/test')
-rw-r--r-- | lab_control/test/__init__.py | 0 | ||||
-rw-r--r-- | lab_control/test/interfaces_test.py | 11 |
2 files changed, 11 insertions, 0 deletions
diff --git a/lab_control/test/__init__.py b/lab_control/test/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/lab_control/test/__init__.py diff --git a/lab_control/test/interfaces_test.py b/lab_control/test/interfaces_test.py new file mode 100644 index 0000000..bf9006b --- /dev/null +++ b/lab_control/test/interfaces_test.py @@ -0,0 +1,11 @@ +import pytest +from lab_control.oscilloscope import Oscilloscope +from lab_control.function_generator import FunctionGenerator + +def test_oscilloscopeInterface(): + with pytest.raises(Exception): + uut = Oscilloscope() + +def test_functionGeneratorInterface(): + with pytest.raises(Exception): + uut = FunctionGenerator() |