# Copyright 2025 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

""" Execute Media Router performance tests against miscellaneous test devices. """
import sys

# TODO(crbug.com/403338499): Implement tests.
def main() -> int:
  print('Running Media Router performance tests.')
  return 0

if __name__ == "__main__":
  sys.exit(main())
