Disable more failing and flaky browser_tests for the touch build.
[chromium-blink-merge.git] / app / test_suite.h
blob34e784df3a025969930727f3c82d86d6558cca27
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef APP_TEST_SUITE_H_
6 #define APP_TEST_SUITE_H_
7 #pragma once
9 #include "base/test/test_suite.h"
11 class AppTestSuite : public base::TestSuite {
12 public:
13 AppTestSuite(int argc, char** argv);
14 virtual ~AppTestSuite();
16 protected:
17 virtual void Initialize();
18 virtual void Shutdown();
21 #endif // APP_TEST_SUITE_H_