webrtc_m130/src/system_wrappers/source/data_log_helpers_unittest.cc
stefan@webrtc.org c9cff24ff0 Adding classes to be used for logging data within the engines and the
components for offline processing. Data logged with these classes can
conveniently be parsed and processed with e.g. Matlab.
Review URL: http://webrtc-codereview.appspot.com/95009

git-svn-id: http://webrtc.googlecode.com/svn/trunk@477 4adac7df-926f-26a2-2b94-8c16560cd09d
2011-08-29 07:39:02 +00:00

65 lines
1.5 KiB
C++

/*
* 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,");
}