def test_07_get_model(self):
     """
     Test that get_model returns the model parameter of the OdooRelation object
     :return:
     """
     test_or = OdooRelation("name", "type", "model")
     self.assertEqual("model", test_or.get_model())
 def test_06_get_type(self):
     """
     Test that get_type returns the type parameter of the OdooRelation object
     :return:
     """
     test_or = OdooRelation("name", "type", "model")
     self.assertEqual("type", test_or.get_type())