1051af73b8f8014eff33330aead0f36944b3403e6Dmitry Shmidt/*
2051af73b8f8014eff33330aead0f36944b3403e6Dmitry Shmidt * libjingle
3051af73b8f8014eff33330aead0f36944b3403e6Dmitry Shmidt * Copyright 2013, Google Inc.
4051af73b8f8014eff33330aead0f36944b3403e6Dmitry Shmidt *
5051af73b8f8014eff33330aead0f36944b3403e6Dmitry Shmidt * Redistribution and use in source and binary forms, with or without
6051af73b8f8014eff33330aead0f36944b3403e6Dmitry Shmidt * modification, are permitted provided that the following conditions are met:
7051af73b8f8014eff33330aead0f36944b3403e6Dmitry Shmidt *
8051af73b8f8014eff33330aead0f36944b3403e6Dmitry Shmidt *  1. Redistributions of source code must retain the above copyright notice,
9051af73b8f8014eff33330aead0f36944b3403e6Dmitry Shmidt *     this list of conditions and the following disclaimer.
10051af73b8f8014eff33330aead0f36944b3403e6Dmitry Shmidt *  2. Redistributions in binary form must reproduce the above copyright notice,
11051af73b8f8014eff33330aead0f36944b3403e6Dmitry Shmidt *     this list of conditions and the following disclaimer in the documentation
12051af73b8f8014eff33330aead0f36944b3403e6Dmitry Shmidt *     and/or other materials provided with the distribution.
13051af73b8f8014eff33330aead0f36944b3403e6Dmitry Shmidt *  3. The name of the author may not be used to endorse or promote products
14cce06667447b5aec83452adb0c15100ada531095Dmitry Shmidt *     derived from this software without specific prior written permission.
15051af73b8f8014eff33330aead0f36944b3403e6Dmitry Shmidt *
16051af73b8f8014eff33330aead0f36944b3403e6Dmitry Shmidt * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
17051af73b8f8014eff33330aead0f36944b3403e6Dmitry Shmidt * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
18051af73b8f8014eff33330aead0f36944b3403e6Dmitry Shmidt * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO
19051af73b8f8014eff33330aead0f36944b3403e6Dmitry Shmidt * EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20051af73b8f8014eff33330aead0f36944b3403e6Dmitry Shmidt * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
21cce06667447b5aec83452adb0c15100ada531095Dmitry Shmidt * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
22051af73b8f8014eff33330aead0f36944b3403e6Dmitry Shmidt * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
23051af73b8f8014eff33330aead0f36944b3403e6Dmitry Shmidt * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
24051af73b8f8014eff33330aead0f36944b3403e6Dmitry Shmidt * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
25cce06667447b5aec83452adb0c15100ada531095Dmitry Shmidt * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26051af73b8f8014eff33330aead0f36944b3403e6Dmitry Shmidt */
27051af73b8f8014eff33330aead0f36944b3403e6Dmitry Shmidt
28cce06667447b5aec83452adb0c15100ada531095Dmitry Shmidt#include "webrtc/base/gunit.h"
29cce06667447b5aec83452adb0c15100ada531095Dmitry Shmidt
30051af73b8f8014eff33330aead0f36944b3403e6Dmitry Shmidt#if !defined(__has_feature) || !__has_feature(objc_arc)
31051af73b8f8014eff33330aead0f36944b3403e6Dmitry Shmidt#error "This file requires ARC support."
32051af73b8f8014eff33330aead0f36944b3403e6Dmitry Shmidt#endif
33051af73b8f8014eff33330aead0f36944b3403e6Dmitry Shmidt
34051af73b8f8014eff33330aead0f36944b3403e6Dmitry Shmidtint main(int argc, char* argv[]) {
35051af73b8f8014eff33330aead0f36944b3403e6Dmitry Shmidt  testing::InitGoogleTest(&argc, argv);
36051af73b8f8014eff33330aead0f36944b3403e6Dmitry Shmidt  return RUN_ALL_TESTS();
37051af73b8f8014eff33330aead0f36944b3403e6Dmitry Shmidt}
38051af73b8f8014eff33330aead0f36944b3403e6Dmitry Shmidt