| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. | 2 * Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license | 4 * Use of this source code is governed by a BSD-style license |
| 5 * that can be found in the LICENSE file in the root of the source | 5 * that can be found in the LICENSE file in the root of the source |
| 6 * tree. An additional intellectual property rights grant can be found | 6 * tree. An additional intellectual property rights grant can be found |
| 7 * in the file PATENTS. All contributing project authors may | 7 * in the file PATENTS. All contributing project authors may |
| 8 * be found in the AUTHORS file in the root of the source tree. | 8 * be found in the AUTHORS file in the root of the source tree. |
| 9 */ | 9 */ |
| 10 | 10 |
| 11 #include "webrtc/modules/audio_processing/transient/wpd_tree.h" | 11 #include "webrtc/modules/audio_processing/transient/wpd_tree.h" |
| 12 | 12 |
| 13 #include <memory> | 13 #include <memory> |
| 14 #include <sstream> | 14 #include <sstream> |
| 15 #include <string> | 15 #include <string> |
| 16 | 16 |
| 17 #include "testing/gtest/include/gtest/gtest.h" | 17 #include "webrtc/test/gtest.h" |
| 18 #include "webrtc/modules/audio_processing/transient/daubechies_8_wavelet_coeffs.
h" | 18 #include "webrtc/modules/audio_processing/transient/daubechies_8_wavelet_coeffs.
h" |
| 19 #include "webrtc/modules/audio_processing/transient/file_utils.h" | 19 #include "webrtc/modules/audio_processing/transient/file_utils.h" |
| 20 #include "webrtc/system_wrappers/include/file_wrapper.h" | 20 #include "webrtc/system_wrappers/include/file_wrapper.h" |
| 21 #include "webrtc/test/testsupport/fileutils.h" | 21 #include "webrtc/test/testsupport/fileutils.h" |
| 22 | 22 |
| 23 namespace webrtc { | 23 namespace webrtc { |
| 24 | 24 |
| 25 TEST(WPDTreeTest, Construction) { | 25 TEST(WPDTreeTest, Construction) { |
| 26 const size_t kTestBufferSize = 100; | 26 const size_t kTestBufferSize = 100; |
| 27 const int kLevels = 5; | 27 const int kLevels = 5; |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 // Close all matlab and out files. | 184 // Close all matlab and out files. |
| 185 for (int i = 0; i < kLeaves; ++i) { | 185 for (int i = 0; i < kLeaves; ++i) { |
| 186 matlab_files_data[i]->CloseFile(); | 186 matlab_files_data[i]->CloseFile(); |
| 187 out_files_data[i]->CloseFile(); | 187 out_files_data[i]->CloseFile(); |
| 188 } | 188 } |
| 189 | 189 |
| 190 test_file->CloseFile(); | 190 test_file->CloseFile(); |
| 191 } | 191 } |
| 192 | 192 |
| 193 } // namespace webrtc | 193 } // namespace webrtc |
| OLD | NEW |