Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/angle
Path: blob/main_old/src/tests/angle_white_box_tests_main.cpp
1693 views
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
11
int main(int argc, char **argv)
12
{
13
angle::TestSuite testSuite(&argc, argv);
14
testing::AddGlobalTestEnvironment(new ANGLETestEnvironment());
15
return testSuite.run();
16
}
17
18