• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2015 The Chromium OS 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 "test_utils.h"
6 
7 #include <gtest/gtest.h>
8 
main(int argc,char ** argv)9 int main(int argc, char** argv) {
10   ::testing::InitGoogleTest(&argc, argv);
11   ::testing::AddGlobalTestEnvironment(new test_utils::BsdiffTestEnvironment);
12   return RUN_ALL_TESTS();
13 }
14