(self)
| 6039 | ) |
| 6040 | |
| 6041 | def testCheckNextIncludeOrder_CppThenC(self): |
| 6042 | assert self.include_state.CheckNextIncludeOrder(cpplint._CPP_SYS_HEADER) == "" |
| 6043 | assert ( |
| 6044 | self.include_state.CheckNextIncludeOrder(cpplint._C_SYS_HEADER) |
| 6045 | == "Found C system header after C++ system header" |
| 6046 | ) |
| 6047 | |
| 6048 | def testCheckNextIncludeOrder_OtherSysThenC(self): |
| 6049 | assert self.include_state.CheckNextIncludeOrder(cpplint._OTHER_SYS_HEADER) == "" |
nothing calls this directly
no test coverage detected