summaryrefslogtreecommitdiffstats
path: root/views/run_all_unittests.cc
blob: 78ae07a9ea4dfbdc70ed83a2848101e3f86ab849 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (c) 2010 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.

#include "app/app_paths.h"
#include "app/resource_bundle.h"
#include "base/test/test_suite.h"

class ViewTestSuite : public base::TestSuite {
 public:
  ViewTestSuite(int argc, char** argv) : base::TestSuite(argc, argv) {}

 protected:
  virtual void Initialize() {
    app::RegisterPathProvider();
    base::TestSuite::Initialize();
    ResourceBundle::InitSharedInstance("en-US");
  }
};

int main(int argc, char **argv) {
  return ViewTestSuite(argc, argv).Run();
}