// 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 "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(kernel_filename, elf_filename, elf_split_filename) {} } // namespace testing } // namespace flutter