mirror of
https://github.com/overte-org/overte.git
synced 2025-07-19 04:28:44 +02:00
24 lines
611 B
C++
24 lines
611 B
C++
//
|
|
// main.cpp
|
|
// tests/physics/src
|
|
//
|
|
// Copyright 2014 High Fidelity, Inc.
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#include "ShapeColliderTests.h"
|
|
#include "ShapeInfoTests.h"
|
|
#include "ShapeManagerTests.h"
|
|
#include "BulletUtilTests.h"
|
|
#include "MeshInfoTests.h"
|
|
|
|
int main(int argc, char** argv) {
|
|
ShapeColliderTests::runAllTests();
|
|
ShapeInfoTests::runAllTests();
|
|
ShapeManagerTests::runAllTests();
|
|
BulletUtilTests::runAllTests();
|
|
MeshInfoTests::runAllTests();
|
|
return 0;
|
|
}
|