Home | History | Annotate | Download | only in bsdiff
      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 "bsdiff/test_utils.h"
      6 
      7 #include <gtest/gtest.h>
      8 
      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