[go: up one dir, main page]

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/testing/fixture_test.h"
6
7#include <utility>
8
9#include "flutter/testing/dart_fixture.h"
10
11namespace flutter {
12namespace testing {
13
14FixtureTest::FixtureTest() : DartFixture() {}
15
16FixtureTest::FixtureTest(std::string kernel_filename,
17 std::string elf_filename,
18 std::string elf_split_filename)
19 : DartFixture(std::move(kernel_filename),
20 std::move(elf_filename),
21 std::move(elf_split_filename)) {}
22
23} // namespace testing
24} // namespace flutter
25

source code of flutter_engine/flutter/testing/fixture_test.cc