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