| * Copyright (c) 2011 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. |
| #include "webrtc/system_wrappers/interface/data_log.h" |
| #include "testing/gtest/include/gtest/gtest.h" |
| TEST(TestDataLog, IntContainers) { |
| webrtc::ValueContainer<int> v1(c); |
| webrtc::ValueContainer<int> v2(c); |
| TEST(TestDataLog, DoubleContainers) { |
| webrtc::ValueContainer<double> v1(c); |
| webrtc::ValueContainer<double> v2(c); |
| TEST(TestDataLog, MultiValueContainers) { |
| webrtc::MultiValueContainer<int> m1(a, 3); |
| webrtc::MultiValueContainer<int> m2(b, 3); |
| webrtc::MultiValueContainer<int> m3(a, 3); |