Author: desruisseaux
Date: Fri Jun 7 15:33:50 2013
New Revision: 1490687
URL: http://svn.apache.org/r1490687
Log:
Forgot that file in a previous commit...
Added:
sis/branches/JDK7/core/sis-utility/src/test/java/org/apache/sis/internal/test/TestUtilitiesTest.java
(with props)
Added:
sis/branches/JDK7/core/sis-utility/src/test/java/org/apache/sis/internal/test/TestUtilitiesTest.java
URL:
http://svn.apache.org/viewvc/sis/branches/JDK7/core/sis-utility/src/test/java/org/apache/sis/internal/test/TestUtilitiesTest.java?rev=1490687&view=auto
==============================================================================
---
sis/branches/JDK7/core/sis-utility/src/test/java/org/apache/sis/internal/test/TestUtilitiesTest.java
(added)
+++
sis/branches/JDK7/core/sis-utility/src/test/java/org/apache/sis/internal/test/TestUtilitiesTest.java
[UTF-8] Fri Jun 7 15:33:50 2013
@@ -0,0 +1,56 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.sis.internal.test;
+
+import org.junit.Test;
+import org.apache.sis.test.TestCase;
+import org.apache.sis.test.TestUtilities;
+
+import static org.junit.Assert.*;
+
+
+/**
+ * Tests the {@link org.apache.sis.test.TestUtilities} class.
+ *
+ * @author Martin Desruisseaux (Geomatys)
+ * @since 0.3
+ * @version 0.3
+ * @module
+ */
+public final strictfp class TestUtilitiesTest extends TestCase {
+ /**
+ * Tests {@link TestUtilities#toTreeStructure(String)}.
+ */
+ @Test
+ public void testToTreeStructure() {
+ assertArrayEquals(new CharSequence[] {
+ "",
+ " ├─",
+ " ├─",
+ " │ ├─",
+ " │ └─",
+ " └─",
+ ""
+ }, TestUtilities.toTreeStructure(
+ "DefaultCitation\n" +
+ " ├─Title…………………………………………………………… Some title\n" +
+ " ├─Cited responsible party\n" +
+ " │ ├─Individual name……………………… Some person of contact\n" +
+ " │ └─Role…………………………………………………… Point of contact\n" +
+ " └─Other citation details……………… Some other details\n"));
+ }
+}
Propchange:
sis/branches/JDK7/core/sis-utility/src/test/java/org/apache/sis/internal/test/TestUtilitiesTest.java
------------------------------------------------------------------------------
svn:eol-style = native
Propchange:
sis/branches/JDK7/core/sis-utility/src/test/java/org/apache/sis/internal/test/TestUtilitiesTest.java
------------------------------------------------------------------------------
svn:mime-type = text/plain;charset=UTF-8