"""Check that all files have been created.""" from unittest import TestCase from support.mock import GNAThub, Project class TestSimpleExample(TestCase): def setUp(self): self.longMessage = True # Run GNAThub with only the sonar-config plugin self.gnathub = GNAThub(Project.simple(), plugins=['gnatmetric']) def testClearToolReference(self): self.gnathub.run(script='clear-gnatmetric-references.py') def testCreateMessageWithProperty(self): self.gnathub.run(script='create-message-with-property.py')