Line |
Branch |
Exec |
Source |
1 |
|
|
// Copyright Contributors to the OpenVDB Project |
2 |
|
|
// SPDX-License-Identifier: MPL-2.0 |
3 |
|
|
|
4 |
|
|
#include <algorithm> // for std::shuffle() |
5 |
|
|
#include <cmath> // for std::round() |
6 |
|
|
#include <cstdlib> // for EXIT_SUCCESS |
7 |
|
|
#include <cstring> // for strrchr() |
8 |
|
|
#include <exception> |
9 |
|
|
#include <fstream> |
10 |
|
|
#include <iostream> |
11 |
|
|
#include <random> |
12 |
|
|
#include <string> |
13 |
|
|
#include <vector> |
14 |
|
|
|
15 |
|
|
#include "gtest/gtest.h" |
16 |
|
|
|
17 |
|
|
int |
18 |
|
1 |
main(int argc, char *argv[]) |
19 |
|
|
{ |
20 |
|
1 |
::testing::InitGoogleTest(&argc, argv); |
21 |
|
|
return RUN_ALL_TESTS(); |
22 |
|
|
} |
23 |
|
|
|