blob: f1bde7ddee76acbac6f67f0cdb381bbd342b054b [file] [log] [blame]
Alex Deymoa5cff222015-04-08 14:10:30 -07001// 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
Alex Deymodcd423b2017-09-13 20:54:24 +02005#include "bsdiff/test_utils.h"
Jed Estep9abc2042016-02-19 11:12:14 -08006
Alex Deymoa5cff222015-04-08 14:10:30 -07007#include <gtest/gtest.h>
8
Alex Deymoe1526cf2015-10-12 17:48:28 -07009int main(int argc, char** argv) {
Alex Deymoa5cff222015-04-08 14:10:30 -070010 ::testing::InitGoogleTest(&argc, argv);
Jed Estep9abc2042016-02-19 11:12:14 -080011 ::testing::AddGlobalTestEnvironment(new test_utils::BsdiffTestEnvironment);
Alex Deymoa5cff222015-04-08 14:10:30 -070012 return RUN_ALL_TESTS();
13}