def test_is_all_params_not_hidden(self, current, answer):
     structure = mock_structure(current_file=current)
     validator = IntegrationValidator(structure)
     assert validator.is_all_params_not_hidden() is answer
 def test_is_all_params_not_hidden(self, source, answer):
     # type: (str, str) -> None
     structure = StructureValidator(source)
     validator = IntegrationValidator(structure)
     assert validator.is_all_params_not_hidden() is answer