(args)
| 855 | |
| 856 | @staticmethod |
| 857 | def GetPlatform(args): |
| 858 | if Platform.ReadBuildConfig(args).get('is_android', False): |
| 859 | return AndroidPlatform(args) |
| 860 | else: |
| 861 | return DesktopPlatform(args) |
| 862 | |
| 863 | def _Run(self, runnable, count, secondary=False, post_process=True): |
| 864 | raise NotImplementedError() # pragma: no cover |
no test coverage detected