Skip to content

Commit

Permalink
SmokeTestAll: split off the smokeTestSoftBody() method
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Feb 8, 2025
1 parent 845d6a8 commit 1e41461
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions src/test/java/testjoltjni/app/samples/SmokeTestAll.java
Original file line number Diff line number Diff line change
Expand Up @@ -193,10 +193,7 @@ private static void smokeTestAll() {
smokeTestGeneral();
smokeTestRig();
smokeTestShapes();

// softbody package:
smokeTest(new SoftBodyPressureTest());
smokeTest(new SoftBodyUpdatePositionTest());
smokeTestSoftBody();

// vehicle package:
smokeTest(new MotorcycleTest());
Expand Down Expand Up @@ -308,4 +305,12 @@ private static void smokeTestShapes() {
smokeTest(new TaperedCylinderShapeTest());
smokeTest(new TriangleShapeTest());
}

/**
* Smoke test the "softbody" package.
*/
private static void smokeTestSoftBody() {
smokeTest(new SoftBodyPressureTest());
smokeTest(new SoftBodyUpdatePositionTest());
}
}

0 comments on commit 1e41461

Please sign in to comment.