Home | History | Annotate | Download | only in keyboard
      1 // Copyright 2013 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 #include "base/basictypes.h"
      6 #include "base/compiler_specific.h"
      7 #include "ui/test/test_suite.h"
      8 
      9 class KeyboardTestSuite : public ui::test::UITestSuite {
     10  public:
     11   KeyboardTestSuite(int argc, char** argv)
     12       : ui::test::UITestSuite(argc, argv) {
     13   }
     14 
     15  protected:
     16   virtual void Initialize() OVERRIDE;
     17   virtual void Shutdown() OVERRIDE;
     18 
     19  private:
     20   DISALLOW_COPY_AND_ASSIGN(KeyboardTestSuite);
     21 };
     22 
     23 void KeyboardTestSuite::Initialize() {
     24   ui::test::UITestSuite::Initialize();
     25 }
     26 
     27 void KeyboardTestSuite::Shutdown() {
     28   ui::test::UITestSuite::Shutdown();
     29 }
     30 
     31 int main(int argc, char** argv) {
     32   return KeyboardTestSuite(argc, argv).Run();
     33 }
     34