Skip to content
Snippets Groups Projects

tests: add tests for submodel.py

Merged Torben Miny requested to merge feature/modifyingTests into master
2 files
+ 22
3
Compare changes
  • Side-by-side
  • Inline
Files
2
+ 3
3
@@ -93,9 +93,9 @@ class ModelNamespaceTest(unittest.TestCase):
_namespace_class = ExampleNamespace
def setUp(self):
self.prop1 = model.Property("Prop1", "int")
self.prop2 = model.Property("Prop2", "int")
self.prop1alt = model.Property("Prop1", "int")
self.prop1 = model.Property("Prop1", model.datatypes.Int)
self.prop2 = model.Property("Prop2", model.datatypes.Int)
self.prop1alt = model.Property("Prop1", model.datatypes.Int)
self.namespace = self._namespace_class()
def test_NamespaceSet(self) -> None:
Loading