blob: c62f5abe7f69ffd098a7ca921f92b77d72a19b75 [file] [log] [blame]
// Copyright 2013 The Flutter Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef FLUTTER_SHELL_PLATFORM_WINDOWS_TESTING_WIN32_FLUTTER_WINDOW_TEST_H_
#define FLUTTER_SHELL_PLATFORM_WINDOWS_TESTING_WIN32_FLUTTER_WINDOW_TEST_H_
#include "flutter/shell/platform/windows/flutter_window.h"
#include "flutter/fml/macros.h"
namespace flutter {
namespace testing {
/// Test class for FlutterWindow.
class FlutterWindowTest : public FlutterWindow {
public:
FlutterWindowTest(int width, int height);
virtual ~FlutterWindowTest();
private:
FML_DISALLOW_COPY_AND_ASSIGN(FlutterWindowTest);
};
} // namespace testing
} // namespace flutter
#endif // FLUTTER_SHELL_PLATFORM_WINDOWS_TESTING_WIN32_FLUTTER_WINDOW_TEST_H_