summaryrefslogtreecommitdiff
path: root/spring-beans/src/test/java/org/springframework/beans/propertyeditors/URIEditorTests.java
diff options
context:
space:
mode:
Diffstat (limited to 'spring-beans/src/test/java/org/springframework/beans/propertyeditors/URIEditorTests.java')
-rw-r--r--spring-beans/src/test/java/org/springframework/beans/propertyeditors/URIEditorTests.java21
1 files changed, 11 insertions, 10 deletions
diff --git a/spring-beans/src/test/java/org/springframework/beans/propertyeditors/URIEditorTests.java b/spring-beans/src/test/java/org/springframework/beans/propertyeditors/URIEditorTests.java
index a347cfa8..4eb6245d 100644
--- a/spring-beans/src/test/java/org/springframework/beans/propertyeditors/URIEditorTests.java
+++ b/spring-beans/src/test/java/org/springframework/beans/propertyeditors/URIEditorTests.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2002-2010 the original author or authors.
+ * Copyright 2002-2016 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -31,15 +31,6 @@ import static org.junit.Assert.*;
*/
public class URIEditorTests {
- private void doTestURI(String uriSpec) {
- PropertyEditor uriEditor = new URIEditor();
- uriEditor.setAsText(uriSpec);
- Object value = uriEditor.getValue();
- assertTrue(value instanceof URI);
- URI uri = (URI) value;
- assertEquals(uriSpec, uri.toString());
- }
-
@Test
public void standardURI() throws Exception {
doTestURI("mailto:juergen.hoeller@interface21.com");
@@ -141,4 +132,14 @@ public class URIEditorTests {
assertEquals("http://example.com/spaces%20and%20%E2%82%AC", uri.toASCIIString());
}
+
+ private void doTestURI(String uriSpec) {
+ PropertyEditor uriEditor = new URIEditor();
+ uriEditor.setAsText(uriSpec);
+ Object value = uriEditor.getValue();
+ assertTrue(value instanceof URI);
+ URI uri = (URI) value;
+ assertEquals(uriSpec, uri.toString());
+ }
+
}