diff options
author | Sven Gothel <sgothel@jausoft.com> | 2023-08-05 03:16:06 +0200 |
---|---|---|
committer | Sven Gothel <sgothel@jausoft.com> | 2023-08-05 03:16:06 +0200 |
commit | 0d3c2b630e06045013250547b3d0cb1bd9f99386 (patch) | |
tree | 0b15ff413169874cee4e85286778a3ed191303a7 /src/junit/com/jogamp/common/net/TestAssetURLConnectionUnregistered.java | |
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 'src/junit/com/jogamp/common/net/TestAssetURLConnectionUnregistered.java')
-rw-r--r-- | src/junit/com/jogamp/common/net/TestAssetURLConnectionUnregistered.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/junit/com/jogamp/common/net/TestAssetURLConnectionUnregistered.java b/src/junit/com/jogamp/common/net/TestAssetURLConnectionUnregistered.java index 1bb88c5..398d0e0 100644 --- a/src/junit/com/jogamp/common/net/TestAssetURLConnectionUnregistered.java +++ b/src/junit/com/jogamp/common/net/TestAssetURLConnectionUnregistered.java @@ -14,7 +14,7 @@ import org.junit.FixMethodOrder; import org.junit.runners.MethodSorters; @FixMethodOrder(MethodSorters.NAME_ASCENDING) -public class AssetURLConnectionUnregisteredTest extends AssetURLConnectionBase { +public class TestAssetURLConnectionUnregistered extends AssetURLConnectionBase { @Test public void assetUnregisteredURLConnection_RT2() throws IOException { testAssetConnection(createAssetURLConnection(test_asset_rt2_url, this.getClass().getClassLoader()), test_asset_rt_entry); @@ -58,7 +58,7 @@ public class AssetURLConnectionUnregisteredTest extends AssetURLConnectionBase { } public static void main(final String args[]) throws IOException { - final String tstname = AssetURLConnectionUnregisteredTest.class.getName(); + final String tstname = TestAssetURLConnectionUnregistered.class.getName(); org.junit.runner.JUnitCore.main(tstname); } } |