Home | History | Annotate | Download | only in test
      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.
      4 
      5 #ifndef UI_AURA_TEST_TEST_SUITE_H_
      6 #define UI_AURA_TEST_TEST_SUITE_H_
      7 
      8 #include "base/basictypes.h"
      9 #include "base/compiler_specific.h"
     10 #include "base/test/test_suite.h"
     11 
     12 namespace aura {
     13 namespace test {
     14 
     15 class AuraTestSuite : public base::TestSuite {
     16  public:
     17   AuraTestSuite(int argc, char** argv);
     18 
     19  protected:
     20   // Overridden from base::TestSuite:
     21   virtual void Initialize() OVERRIDE;
     22   virtual void Shutdown() OVERRIDE;
     23 
     24  private:
     25   DISALLOW_COPY_AND_ASSIGN(AuraTestSuite);
     26 };
     27 
     28 }  // namespace test
     29 }  // namespace aura
     30 
     31 #endif  // UI_AURA_TEST_TEST_SUITE_H_
     32