2013-05-27 15:52:38 +00:00
|
|
|
/*
|
|
|
|
|
* 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.
|
|
|
|
|
*/
|
2014-06-05 09:32:51 +00:00
|
|
|
|
2017-09-15 06:47:31 +02:00
|
|
|
#include "test/run_test.h"
|
2014-06-05 09:32:51 +00:00
|
|
|
|
2013-05-27 15:52:38 +00:00
|
|
|
namespace webrtc {
|
|
|
|
|
namespace test {
|
|
|
|
|
|
2018-06-19 15:03:05 +02:00
|
|
|
void RunTest(void (*test)()) {
|
2014-06-05 09:32:51 +00:00
|
|
|
(*test)();
|
2013-05-27 15:52:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace test
|
|
|
|
|
} // namespace webrtc
|