2011-10-06 15:34:47 +02:00
|
|
|
// Copyright (c) 2011 The Chromium Embedded Framework Authors. All rights
|
2010-10-03 23:04:50 +02:00
|
|
|
// reserved. Use of this source code is governed by a BSD-style license that
|
|
|
|
// can be found in the LICENSE file.
|
|
|
|
|
|
|
|
#ifndef _CEF_TEST_SUITE_H
|
|
|
|
#define _CEF_TEST_SUITE_H
|
|
|
|
|
|
|
|
#include "base/test/test_suite.h"
|
|
|
|
|
|
|
|
class CefTestSuite : public TestSuite {
|
2011-10-06 15:34:47 +02:00
|
|
|
public:
|
|
|
|
CefTestSuite(int argc, char** argv);
|
2010-10-03 23:04:50 +02:00
|
|
|
|
2011-11-02 20:50:00 +01:00
|
|
|
static bool GetCachePath(std::string& path);
|
|
|
|
|
2011-10-06 15:34:47 +02:00
|
|
|
protected:
|
|
|
|
virtual void Initialize();
|
|
|
|
virtual void Shutdown();
|
2010-10-03 23:04:50 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _CEF_TEST_SUITE_H
|