From a636580aa874a4372be50e4e7a05c936bb78bb07 Mon Sep 17 00:00:00 2001
From: lukken <lukken@astron.nl>
Date: Wed, 21 Jul 2021 09:36:44 +0000
Subject: [PATCH] L2SS-240: Very basic integration test

---
 devices/integration_test/test_device.py | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)
 create mode 100644 devices/integration_test/test_device.py

diff --git a/devices/integration_test/test_device.py b/devices/integration_test/test_device.py
new file mode 100644
index 000000000..9d5fe51d1
--- /dev/null
+++ b/devices/integration_test/test_device.py
@@ -0,0 +1,22 @@
+# -*- 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.
+
+from tango import DeviceProxy
+
+from integration_test import base
+
+
+class TestDevice(base.IntegrationTestCase):
+
+    def setUp(self):
+        super(TestDevice, self).setUp()
+
+
+    def test_device(self):
+        d = DeviceProxy("LTS/SDP/1")
\ No newline at end of file
-- 
GitLab