(self)
| 5698 | self.TestLint('#include "lua.h"', "") |
| 5699 | |
| 5700 | def testHppInclude(self): |
| 5701 | code = "\n".join(["#include <vector>", "#include <boost/any.hpp>"]) |
| 5702 | self.TestLanguageRulesCheck("foo.h", code, "") |
| 5703 | |
| 5704 | def testBuildPrintfFormat(self): |
| 5705 | error_collector = ErrorCollector(self.assertTrue) |
nothing calls this directly
no test coverage detected