Organise imports to ONAP Java standards
[aai/search-data-service.git] / src / test / java / org / onap / aai / sa / rest / DocumentSchemaTest.java
index 62f9ef9..44ed60c 100644 (file)
  */
 package org.onap.aai.sa.rest;
 
+import static org.junit.Assert.assertTrue;
+
 import com.fasterxml.jackson.core.JsonParseException;
 import com.fasterxml.jackson.databind.JsonMappingException;
 import com.fasterxml.jackson.databind.ObjectMapper;
-import org.junit.Test;
-import org.onap.aai.sa.rest.DocumentSchema;
-
-import java.io.BufferedReader;
 import java.io.File;
-import java.io.FileReader;
 import java.io.IOException;
-
-import static org.junit.Assert.assertTrue;
+import org.junit.Test;
 
 
 public class DocumentSchemaTest {
@@ -70,16 +66,17 @@ public class DocumentSchemaTest {
         fileString.equals(jsonString));
   }
 
+//
+//  /**
+//   * This test validates that we convert document definitions back and
+//   * forth between json strings and POJOs without any loss of data in
+//   * the case of document schemas which contain nested fields.
+//   *
+//   * @throws com.fasterxml.jackson.core.JsonParseException
+//   * @throws com.fasterxml.jackson.databind.JsonMappingException
+//   * @throws IOException
+//   */
 
-  /**
-   * This test validates that we convert document definitions back and
-   * forth between json strings and POJOs without any loss of data in
-   * the case of document schemas which contain nested fields.
-   *
-   * @throws com.fasterxml.jackson.core.JsonParseException
-   * @throws com.fasterxml.jackson.databind.JsonMappingException
-   * @throws IOException
-   */
   @Test
   public void nestedDocSchemaFromJsonFileTest() throws JsonParseException, JsonMappingException, IOException {