diff --git a/devices/integration_test/test_device.py b/devices/integration_test/test_device.py
new file mode 100644
index 0000000000000000000000000000000000000000..9d5fe51d14cefc8828f535d50972277f6a90b9d0
--- /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