Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
fl_view_test.cc
Go to the documentation of this file.
1// Copyright 2013 The Flutter Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "flutter/shell/platform/linux/public/flutter_linux/fl_view.h"
6#include "flutter/shell/platform/linux/testing/fl_test_gtk_logs.h"
7
8#include "gtest/gtest.h"
9
10TEST(FlViewTest, StateUpdateDoesNotHappenInInit) {
12 g_autoptr(FlDartProject) project = fl_dart_project_new();
13 g_autoptr(FlView) view = fl_view_new(project);
14 // Check that creating a view doesn't try to query the window state in
15 // initialization, causing a critical log to be issued.
16 EXPECT_EQ(
18 (GLogLevelFlags)0x0);
19 g_object_ref_sink(view);
20}
#define TEST(S, s, D, expected)
G_MODULE_EXPORT FlDartProject * fl_dart_project_new()
G_MODULE_EXPORT FlView * fl_view_new(FlDartProject *project)
Definition fl_view.cc:795
GLogLevelFlags fl_get_received_gtk_log_levels()
Returns the recorded log levels.
void fl_ensure_gtk_init(GLogWriterFunc writer)
Ensures that GTK has been initialized and starts monitoring logs.