forked from flutter-team-archive/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfixture_test.cc
More file actions
24 lines (17 loc) · 711 Bytes
/
Copy pathfixture_test.cc
File metadata and controls
24 lines (17 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// 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.
#include "flutter/testing/fixture_test.h"
#include <utility>
#include "flutter/testing/dart_fixture.h"
namespace flutter {
namespace testing {
FixtureTest::FixtureTest() : DartFixture() {}
FixtureTest::FixtureTest(std::string kernel_filename,
std::string elf_filename,
std::string elf_split_filename)
: DartFixture(std::move(kernel_filename),
std::move(elf_filename),
std::move(elf_split_filename)) {}
} // namespace testing
} // namespace flutter