blob: e447f1c40b707791d39d8773a251ad34ac7380dc [file] [log] [blame]
// Copyright 2017 The Chromium 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 CHROME_BROWSER_VR_TEST_VR_TEST_SUITE_H_
#define CHROME_BROWSER_VR_TEST_VR_TEST_SUITE_H_
#include "base/test/test_suite.h"
namespace content {
class TestBrowserThreadBundle;
} // namespace content
namespace vr {
class VrTestSuite : public base::TestSuite {
public:
VrTestSuite(int argc, char** argv);
~VrTestSuite() override;
protected:
void Initialize() override;
void Shutdown() override;
private:
std::unique_ptr<content::TestBrowserThreadBundle> thread_bundle_;
DISALLOW_COPY_AND_ASSIGN(VrTestSuite);
};
} // namespace vr
#endif // CHROME_BROWSER_VR_TEST_VR_TEST_SUITE_H_