resource: Add a mobile resource for the virtual test

Add a new resource and make a reservation in the suite.

Change-Id: Ic26aa63cad62323bb85f952640672eb28af0eadc
diff --git a/src/osmo_gsm_tester/ms.py b/src/osmo_gsm_tester/ms.py
index a361865..222a078 100644
--- a/src/osmo_gsm_tester/ms.py
+++ b/src/osmo_gsm_tester/ms.py
@@ -46,4 +46,4 @@
     @abstractmethod
     def cleanup(self):
         """Cleans up resources allocated."""
-        pass
\ No newline at end of file
+        pass
diff --git a/src/osmo_gsm_tester/ms_osmo_mobile.py b/src/osmo_gsm_tester/ms_osmo_mobile.py
new file mode 100644
index 0000000..1c28117
--- /dev/null
+++ b/src/osmo_gsm_tester/ms_osmo_mobile.py
@@ -0,0 +1,28 @@
+# osmo_gsm_tester: OsmocomBB based Mobile Station (MS)
+#
+# Copyright (C) 2016-2019 by sysmocom - s.f.m.c. GmbH
+#
+# Author: Neels Hofmeyr <neels@hofmeyr.de>
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+from . import ms
+
+
+class MSOsmoMobile(ms.MS):
+    """Represent a osmocom-bb mobile."""
+
+    def cleanup(self):
+        # do nothing for a virtual resource
+        pass
diff --git a/src/osmo_gsm_tester/resource.py b/src/osmo_gsm_tester/resource.py
index 2e7f500..ce1966b 100644
--- a/src/osmo_gsm_tester/resource.py
+++ b/src/osmo_gsm_tester/resource.py
@@ -28,6 +28,7 @@
 from . import schema
 from . import bts_sysmo, bts_osmotrx, bts_osmovirtual, bts_octphy, bts_nanobts
 from . import modem
+from . import ms_osmo_mobile
 
 from .util import is_dict, is_list
 
@@ -110,6 +111,7 @@
         # Map None to ofono for forward compability
         None: modem.Modem,
         'ofono': modem.Modem,
+        'osmo-mobile': ms_osmo_mobile.MSOsmoMobile,
 }