Edit

kc3-lang/angle/tests/angle_tests/angle_test_main.cpp

Branch :

  • Show log

    Commit

  • Author : Geoff Lang
    Date : 2014-04-24 17:05:40
    Hash : 06bcde59
    Message : Remove gmock the dependency from angle_tests and compiler_tests. BUG=angle:611 Change-Id: Ieb250bda25d62cda3e0690d05d814a4a39062d92 Reviewed-on: https://chromium-review.googlesource.com/197042 Reviewed-by: Jamie Madill <jmadill@chromium.org> Reviewed-by: Shannon Woods <shannonwoods@chromium.org> Tested-by: Geoff Lang <geofflang@chromium.org>

  • tests/angle_tests/angle_test_main.cpp
  • //
    // Copyright (c) 2013 The ANGLE Project 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 "gtest/gtest.h"
    #include "ANGLETest.h"
    
    int main(int argc, char** argv)
    {
        testing::InitGoogleTest(&argc, argv);
        testing::AddGlobalTestEnvironment(new ANGLETestEnvironment());
        int rt = RUN_ALL_TESTS();
        return rt;
    }