| /* |
| * 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. |
| */ |
| |
| /** |
| * Runs "extended" integration tests. |
| */ |
| |
| #include "gtest/gtest.h" |
| #include "vie_integration_test_base.h" |
| #include "vie_autotest.h" |
| |
| namespace { |
| |
| class ViEApiIntegrationTest: public ViEIntegrationTest { |
| }; |
| |
| TEST_F(ViEApiIntegrationTest, RunsBaseTestWithoutErrors) { |
| tests_->ViEBaseAPITest(); |
| } |
| |
| TEST_F(ViEApiIntegrationTest, RunsCaptureTestWithoutErrors) { |
| tests_->ViECaptureAPITest(); |
| } |
| |
| TEST_F(ViEApiIntegrationTest, RunsCodecTestWithoutErrors) { |
| tests_->ViECodecAPITest(); |
| } |
| |
| TEST_F(ViEApiIntegrationTest, RunsEncryptionTestWithoutErrors) { |
| tests_->ViEEncryptionAPITest(); |
| } |
| |
| TEST_F(ViEApiIntegrationTest, RunsFileTestWithoutErrors) { |
| tests_->ViEFileAPITest(); |
| } |
| |
| TEST_F(ViEApiIntegrationTest, RunsImageProcessTestWithoutErrors) { |
| tests_->ViEImageProcessAPITest(); |
| } |
| |
| TEST_F(ViEApiIntegrationTest, RunsNetworkTestWithoutErrors) { |
| tests_->ViENetworkAPITest(); |
| } |
| |
| TEST_F(ViEApiIntegrationTest, RunsRenderTestWithoutErrors) { |
| tests_->ViERenderAPITest(); |
| } |
| |
| TEST_F(ViEApiIntegrationTest, RunsRtpRtcpTestWithoutErrors) { |
| tests_->ViERtpRtcpAPITest(); |
| } |
| |
| } // namespace |