1a93cbbf0c034d07912a7b5b65fb2a32b54903ccbmflodman@webrtc.org/*
2a93cbbf0c034d07912a7b5b65fb2a32b54903ccbmflodman@webrtc.org *  Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
3a93cbbf0c034d07912a7b5b65fb2a32b54903ccbmflodman@webrtc.org *
4a93cbbf0c034d07912a7b5b65fb2a32b54903ccbmflodman@webrtc.org *  Use of this source code is governed by a BSD-style license
5a93cbbf0c034d07912a7b5b65fb2a32b54903ccbmflodman@webrtc.org *  that can be found in the LICENSE file in the root of the source
6a93cbbf0c034d07912a7b5b65fb2a32b54903ccbmflodman@webrtc.org *  tree. An additional intellectual property rights grant can be found
7a93cbbf0c034d07912a7b5b65fb2a32b54903ccbmflodman@webrtc.org *  in the file PATENTS.  All contributing project authors may
8a93cbbf0c034d07912a7b5b65fb2a32b54903ccbmflodman@webrtc.org *  be found in the AUTHORS file in the root of the source tree.
9a93cbbf0c034d07912a7b5b65fb2a32b54903ccbmflodman@webrtc.org */
1059a001f24ffaedc6680a2e1dd13f2116cd3d95d0mflodman@webrtc.org
1159a001f24ffaedc6680a2e1dd13f2116cd3d95d0mflodman@webrtc.org#include "webrtc/test/run_test.h"
1259a001f24ffaedc6680a2e1dd13f2116cd3d95d0mflodman@webrtc.org
1359a001f24ffaedc6680a2e1dd13f2116cd3d95d0mflodman@webrtc.org#include <stdio.h>
14a93cbbf0c034d07912a7b5b65fb2a32b54903ccbmflodman@webrtc.org
15a93cbbf0c034d07912a7b5b65fb2a32b54903ccbmflodman@webrtc.orgnamespace webrtc {
16a93cbbf0c034d07912a7b5b65fb2a32b54903ccbmflodman@webrtc.orgnamespace test {
17a93cbbf0c034d07912a7b5b65fb2a32b54903ccbmflodman@webrtc.org
1859a001f24ffaedc6680a2e1dd13f2116cd3d95d0mflodman@webrtc.orgvoid RunTest(void(*test)()) {
1959a001f24ffaedc6680a2e1dd13f2116cd3d95d0mflodman@webrtc.org  (*test)();
20a93cbbf0c034d07912a7b5b65fb2a32b54903ccbmflodman@webrtc.org}
21a93cbbf0c034d07912a7b5b65fb2a32b54903ccbmflodman@webrtc.org
22a93cbbf0c034d07912a7b5b65fb2a32b54903ccbmflodman@webrtc.org}  // namespace test
23a93cbbf0c034d07912a7b5b65fb2a32b54903ccbmflodman@webrtc.org}  // namespace webrtc
24