Exemplo n.º 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))
Exemplo n.º 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))
Exemplo n.º 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))