Runs before all tests are executed.
()
| 7216 | |
| 7217 | # pylint: disable=C6409 |
| 7218 | def setUp(): |
| 7219 | """Runs before all tests are executed.""" |
| 7220 | # Enable all filters, so we don't miss anything that is off by default. |
| 7221 | cpplint._DEFAULT_FILTERS = [] |
| 7222 | cpplint._cpplint_state.SetFilters("") |
| 7223 | |
| 7224 | |
| 7225 | @pytest.fixture(autouse=True, scope="session") |
no test coverage detected