(self, test_key, cond_key, default)
| 211 | return self.xcode_settings[self.configname] |
| 212 | |
| 213 | def _Test(self, test_key, cond_key, default): |
| 214 | return self._Settings().get(test_key, default) == cond_key |
| 215 | |
| 216 | def _Appendf(self, lst, test_key, format_str, default=None): |
| 217 | if test_key in self._Settings(): |
no test coverage detected