Index: webrtc/system_wrappers/source/aligned_array_unittest.cc |
diff --git a/webrtc/system_wrappers/source/aligned_array_unittest.cc b/webrtc/system_wrappers/source/aligned_array_unittest.cc |
index e5e556dff5d04634a46811012629eaa68d6a1f23..f25c7178d21635533ef410f7230b2e20d12bfafd 100644 |
--- a/webrtc/system_wrappers/source/aligned_array_unittest.cc |
+++ b/webrtc/system_wrappers/source/aligned_array_unittest.cc |
@@ -51,5 +51,10 @@ TEST(AlignedArrayTest, CheckOverlap) { |
} |
} |
-} // namespace webrtc |
+TEST(AlignedArrayTest, CheckRowsCols) { |
+ AlignedArray<bool> arr(10, 7, 128); |
+ ASSERT_EQ(arr.rows(), 10); |
Peter Kasting
2015/06/18 16:22:47
Nit: (expected, actual) (2 places)
|
+ ASSERT_EQ(arr.cols(), 7); |
+} |
+} // namespace webrtc |