(self)
| 83 | self.stats.sort_arg_dict_default[arg_str][-1]) |
| 84 | |
| 85 | def test_sort_stats_string(self): |
| 86 | for sort_name in ['calls', 'ncalls', 'cumtime', 'cumulative', |
| 87 | 'filename', 'line', 'module', 'name', 'nfl', 'pcalls', |
| 88 | 'stdname', 'time', 'tottime']: |
| 89 | self.stats.sort_stats(sort_name) |
| 90 | self.assertEqual(self.stats.sort_type, |
| 91 | self.stats.sort_arg_dict_default[sort_name][-1]) |
| 92 | |
| 93 | def test_sort_stats_partial(self): |
| 94 | sortkey = 'filename' |
nothing calls this directly
no test coverage detected