Move src/ -> webrtc/
TBR=niklas.enbom@webrtc.org Review URL: https://webrtc-codereview.appspot.com/915006 git-svn-id: http://webrtc.googlecode.com/svn/trunk@2963 4adac7df-926f-26a2-2b94-8c16560cd09d
This commit is contained in:
64
webrtc/system_wrappers/source/data_log_helpers_unittest.cc
Normal file
64
webrtc/system_wrappers/source/data_log_helpers_unittest.cc
Normal file
@ -0,0 +1,64 @@
|
||||
/*
|
||||
* 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 <string>
|
||||
|
||||
#include "data_log.h"
|
||||
#include "gtest/gtest.h"
|
||||
|
||||
using ::webrtc::DataLog;
|
||||
|
||||
TEST(TestDataLog, IntContainers) {
|
||||
int c = 5;
|
||||
webrtc::ValueContainer<int> v1(c);
|
||||
c = 10;
|
||||
webrtc::ValueContainer<int> v2(c);
|
||||
std::string s1, s2;
|
||||
v1.ToString(&s1);
|
||||
v2.ToString(&s2);
|
||||
ASSERT_EQ(s1, "5,");
|
||||
ASSERT_EQ(s2, "10,");
|
||||
v1 = v2;
|
||||
v1.ToString(&s1);
|
||||
ASSERT_EQ(s1, s2);
|
||||
}
|
||||
|
||||
TEST(TestDataLog, DoubleContainers) {
|
||||
double c = 3.5;
|
||||
webrtc::ValueContainer<double> v1(c);
|
||||
c = 10.3;
|
||||
webrtc::ValueContainer<double> v2(c);
|
||||
std::string s1, s2;
|
||||
v1.ToString(&s1);
|
||||
v2.ToString(&s2);
|
||||
ASSERT_EQ(s1, "3.5,");
|
||||
ASSERT_EQ(s2, "10.3,");
|
||||
v1 = v2;
|
||||
v1.ToString(&s1);
|
||||
ASSERT_EQ(s1, s2);
|
||||
}
|
||||
|
||||
TEST(TestDataLog, MultiValueContainers) {
|
||||
int a[3] = {1, 2, 3};
|
||||
int b[3] = {4, 5, 6};
|
||||
webrtc::MultiValueContainer<int> m1(a, 3);
|
||||
webrtc::MultiValueContainer<int> m2(b, 3);
|
||||
webrtc::MultiValueContainer<int> m3(a, 3);
|
||||
std::string s1, s2, s3;
|
||||
m1.ToString(&s1);
|
||||
m2.ToString(&s2);
|
||||
ASSERT_EQ(s1, "1,2,3,");
|
||||
ASSERT_EQ(s2, "4,5,6,");
|
||||
m1 = m2;
|
||||
m1.ToString(&s1);
|
||||
ASSERT_EQ(s1, s2);
|
||||
m3.ToString(&s3);
|
||||
ASSERT_EQ(s3, "1,2,3,");
|
||||
}
|
||||
Reference in New Issue
Block a user