Example #1
0
 def test_get_active_checkers(self):
     # this test is only to see is not crashing
     result = sut.get_active_checkers('clang', [])
     self.assertTrue(len(result))
     # do check result types
     for value in result:
         self.assertEqual(str, type(value))
Example #2
0
 def test_get_active_checkers(self):
     # this test is only to see is not crashing
     result = sut.get_active_checkers('clang', [])
     self.assertTrue(len(result))
     # do check result types
     for value in result:
         self.assertEqual(str, type(value))
Example #3
0
 def test_get_active_checkers(self):
     # this test is only to see is not crashing
     result = sut.get_active_checkers('clang', [])
     self.assertTrue(len(result))