Author: ggregory Date: Wed Nov 14 02:37:23 2012 New Revision: 1409063 URL: http://svn.apache.org/viewvc?rev=1409063&view=rev Log: Sort members.
Modified: commons/proper/vfs/trunk/core/src/test/java/org/apache/commons/vfs2/provider/local/test/UrlTests.java Modified: commons/proper/vfs/trunk/core/src/test/java/org/apache/commons/vfs2/provider/local/test/UrlTests.java URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/src/test/java/org/apache/commons/vfs2/provider/local/test/UrlTests.java?rev=1409063&r1=1409062&r2=1409063&view=diff ============================================================================== --- commons/proper/vfs/trunk/core/src/test/java/org/apache/commons/vfs2/provider/local/test/UrlTests.java (original) +++ commons/proper/vfs/trunk/core/src/test/java/org/apache/commons/vfs2/provider/local/test/UrlTests.java Wed Nov 14 02:37:23 2012 @@ -32,16 +32,6 @@ public class UrlTests extends AbstractProviderTestCase { /** - * Tests resolution of an absolute file name. - */ - public void testHashURL() throws Exception - { - final FileObject file = getReadFolder().resolveFile("test-hash-#test.txt"); - - assertEquals(file.toString(), UriParser.decode(file.getURL().toString())); - } - - /** * Tests FindFiles with a filename that has a hash sign in it. */ public void testHashFindFiles() throws Exception @@ -66,4 +56,14 @@ public class UrlTests fail("Test hash file containing 'test-hash' not found"); } } + + /** + * Tests resolution of an absolute file name. + */ + public void testHashURL() throws Exception + { + final FileObject file = getReadFolder().resolveFile("test-hash-#test.txt"); + + assertEquals(file.toString(), UriParser.decode(file.getURL().toString())); + } }