Skip to content

Commit

Permalink
reorganize src/test/java into 3 new packages
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Jul 7, 2024
1 parent 3e56a5b commit 6fff43d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ of this software and associated documentation files (the "Software"), to deal
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
package testjoltjni;

import com.github.stephengold.joltjni.Jolt;
import com.github.stephengold.joltjni.Quat;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ of this software and associated documentation files (the "Software"), to deal
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/

package testjoltjni.app;
import com.github.stephengold.joltjni.*;

import testjoltjni.Utils;
/**
* A straightforward Java translation of the Jolt Physics "convex vs mesh scene"
* performance test.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ of this software and associated documentation files (the "Software"), to deal
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/

package testjoltjni.app;
import com.github.stephengold.joltjni.*;

import testjoltjni.Utils;
/**
* A straightforward Java translation of the Jolt Physics "hello world" sample
* application.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ of this software and associated documentation files (the "Software"), to deal
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
package testjoltjni.junit;

import com.github.stephengold.joltjni.Body;
import com.github.stephengold.joltjni.BodyCreationSettings;
Expand Down Expand Up @@ -46,6 +47,7 @@ of this software and associated documentation files (the "Software"), to deal
import com.github.stephengold.joltjni.Vec3;
import org.junit.Assert;
import org.junit.Test;
import testjoltjni.Utils;

/**
* An automated test for jolt-jni using JUnit 4.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ of this software and associated documentation files (the "Software"), to deal
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*/
package testjoltjni.junit;

import com.github.stephengold.joltjni.BodyCreationSettings;
import com.github.stephengold.joltjni.BodyInterface;
Expand Down Expand Up @@ -47,6 +48,7 @@ of this software and associated documentation files (the "Software"), to deal
import com.github.stephengold.joltjni.VertexList;
import org.junit.Assert;
import org.junit.Test;
import testjoltjni.Utils;

/**
* An automated test for jolt-jni using JUnit 4: drop 1,764 convex shapes onto a
Expand Down

0 comments on commit 6fff43d

Please sign in to comment.