blob: b515254685728bc4c9f15846f28b36fc447f7421 [file] [log] [blame]
/*
* Copyright (c) 2013 The WebRTC project authors. All Rights Reserved.
*
* Use of this source code is governed by a BSD-style license
* that can be found in the LICENSE file in the root of the source
* tree. An additional intellectual property rights grant can be found
* in the file PATENTS. All contributing project authors may
* be found in the AUTHORS file in the root of the source tree.
*/
#ifndef WEBRTC_TEST_RUN_TEST_H
#define WEBRTC_TEST_RUN_TEST_H
namespace webrtc {
namespace test {
// Running a test function on a separate thread, if required by the OS.
void RunTest(void(*test)());
} // namespace test
} // namespace webrtc
#endif // WEBRTC_TEST_RUN_TEST_H