forked from flutter/engine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfixture_test.h
30 lines (22 loc) · 826 Bytes
/
fixture_test.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// 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_TESTING_FIXTURE_TEST_H_
#define FLUTTER_TESTING_FIXTURE_TEST_H_
#include "flutter/testing/dart_fixture.h"
namespace flutter {
namespace testing {
class FixtureTest : public DartFixture, public ThreadTest {
public:
// Uses the default filenames from the fixtures generator.
FixtureTest();
// Allows to customize the kernel, ELF and split ELF filenames.
FixtureTest(std::string kernel_filename,
std::string elf_filename,
std::string elf_split_filename);
private:
FML_DISALLOW_COPY_AND_ASSIGN(FixtureTest);
};
} // namespace testing
} // namespace flutter
#endif // FLUTTER_TESTING_FIXTURE_TEST_H_