1/*
2 *  Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
3 *
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
6 *  tree. An additional intellectual property rights grant can be found
7 *  in the file PATENTS.  All contributing project authors may
8 *  be found in the AUTHORS file in the root of the source tree.
9 */
10
11#ifndef WEBRTC_VIDEO_ENGINE_TEST_AUTO_TEST_AUTOMATED_VIE_LEGACY_FIXTURE_H_
12#define WEBRTC_VIDEO_ENGINE_TEST_AUTO_TEST_AUTOMATED_VIE_LEGACY_FIXTURE_H_
13
14#include "webrtc/video_engine/test/auto_test/automated/two_windows_fixture.h"
15
16// Inherited by old-style standard integration tests based on ViEAutoTest.
17class LegacyFixture : public TwoWindowsFixture {
18 public:
19  // Initializes ViEAutoTest in addition to the work done by ViEIntegrationTest.
20  static void SetUpTestCase();
21
22  // Releases anything allocated by SetupTestCase.
23  static void TearDownTestCase();
24
25 protected:
26  static ViEAutoTest* tests_;
27};
28
29#endif  // WEBRTC_VIDEO_ENGINE_TEST_AUTO_TEST_AUTOMATED_VIE_LEGACY_FIXTURE_H_
30