diff options
author | Sven Gothel <[email protected]> | 2023-08-05 03:16:06 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2023-08-05 03:16:06 +0200 |
commit | 0d3c2b630e06045013250547b3d0cb1bd9f99386 (patch) | |
tree | 0b15ff413169874cee4e85286778a3ed191303a7 /test/junit | |
parent | 177ee444d1b86e6412f636d5f4e8f0695d418246 (diff) |
Cleanup unit test class names (pt2): Try to start w/ 'Test', remove intermediate 'Test' for supporting, non-test classes
Diffstat (limited to 'test/junit')
-rw-r--r-- | test/junit/com/jogamp/gluegen/StructValidator.java | 2 | ||||
-rw-r--r-- | test/junit/com/jogamp/gluegen/TestStructAccessor.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/junit/com/jogamp/gluegen/StructValidator.java b/test/junit/com/jogamp/gluegen/StructValidator.java index 6637f4d..d39d80d 100644 --- a/test/junit/com/jogamp/gluegen/StructValidator.java +++ b/test/junit/com/jogamp/gluegen/StructValidator.java @@ -34,7 +34,7 @@ import org.junit.Ignore; import static org.junit.Assert.*; /** - * this file will not compile unless {@link com.jogamp.gluegen.StructAccessorTest} has been run. + * this file will not compile unless {@link com.jogamp.gluegen.TestStructAccessor} has been run. * @author Michael Bien */ @Ignore diff --git a/test/junit/com/jogamp/gluegen/TestStructAccessor.java b/test/junit/com/jogamp/gluegen/TestStructAccessor.java index 46191f1..05f8739 100644 --- a/test/junit/com/jogamp/gluegen/TestStructAccessor.java +++ b/test/junit/com/jogamp/gluegen/TestStructAccessor.java @@ -54,7 +54,7 @@ import static com.jogamp.gluegen.BuildUtil.*; * * @author Michael Bien */ -public class StructAccessorTest { +public class TestStructAccessor { @Test public void generateStruct() { |