Flutter Engine
 
Loading...
Searching...
No Matches
fixture_test.h
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#ifndef FLUTTER_TESTING_FIXTURE_TEST_H_
6#define FLUTTER_TESTING_FIXTURE_TEST_H_
7
9
10namespace flutter::testing {
11
12class FixtureTest : public DartFixture, public ThreadTest {
13 public:
14 // Uses the default filenames from the fixtures generator.
16
17 // Allows to customize the kernel, ELF and split ELF filenames.
18 FixtureTest(std::string kernel_filename,
19 std::string elf_filename,
20 std::string elf_split_filename);
21
22 private:
24};
25
26} // namespace flutter::testing
27
28#endif // FLUTTER_TESTING_FIXTURE_TEST_H_
A fixture that creates threads with running message loops that are terminated when the test is done (...
Definition thread_test.h:26
#define FML_DISALLOW_COPY_AND_ASSIGN(TypeName)
Definition macros.h:27