Skip to content
Snippets Groups Projects
Commit c747d084 authored by Stefano Borini's avatar Stefano Borini
Browse files

Coverage

parent ac2e65ac
No related branches found
No related tags found
1 merge request!60Moved parameters into MCO
......@@ -31,3 +31,7 @@ class TestBaseMCOParameterFactory(unittest.TestCase):
model = factory.create_model({"x": 42})
self.assertIsInstance(model, DummyMCOParameter)
self.assertEqual(model.x, 42)
model = factory.create_model()
self.assertIsInstance(model, DummyMCOParameter)
self.assertEqual(model.x, 0)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment