1 // 2 // Copyright 2013 The ANGLE Project Authors. All rights reserved. 3 // Use of this source code is governed by a BSD-style license that can be 4 // found in the LICENSE file. 5 // 6 7 #include "gtest/gtest.h" 8 #include "test_utils/ANGLETest.h" 9 #include "test_utils/runner/TestSuite.h" 10 main(int argc,char ** argv)11int main(int argc, char **argv) 12 { 13 angle::TestSuite testSuite(&argc, argv); 14 testing::AddGlobalTestEnvironment(new ANGLETestEnvironment()); 15 return testSuite.run(); 16 } 17