tboost-unit-tests.cpp - sphere - GPU-based 3D discrete element method algorithm with optional fluid coupling
HTML git clone git://src.adamsgaard.dk/sphere
DIR Log
DIR Files
DIR Refs
DIR LICENSE
---
tboost-unit-tests.cpp (324B)
---
1 // Include the boost unit testing framework,
2 // requires -lboost_unit_test_framework when linking
3 #include <boost/test/included/unit_test.hpp>
4
5 #include "sphere.h"
6
7 // define the name of the test suite
8 BOOST_AUTO_TEST_SUITE (spheretest)
9
10 BOOST_AUTO_TEST_CASE (inittest)
11 {
12 DEM testDEM();
13 }
14
15 BOOST_AUTO_TEST_SUITE_END()
16
17