Replaced all tabs with spaces in java and pom.xml
[so.git] / asdc-controller / src / test / java / org / onap / so / asdc / client / exceptions / ASDCControllerExceptionTest.java
index e2aee60..927779c 100644 (file)
@@ -22,29 +22,28 @@ package org.onap.so.asdc.client.exceptions;
 
 import static com.shazam.shazamcrest.MatcherAssert.assertThat;
 import static com.shazam.shazamcrest.matcher.Matchers.sameBeanAs;
-
 import org.junit.Test;
 
 public class ASDCControllerExceptionTest {
-       private String exceptionMessage = "test message for exception";
-       private String throwableMessage = "separate throwable that caused asdcDownloadException";
-       
-       @Test
-       public void asdcParametersExceptionTest() {
-               ASDCControllerException asdcDownloadException = new ASDCControllerException(exceptionMessage);
-               
-               Exception expectedException = new Exception(exceptionMessage);
-               
-               assertThat(asdcDownloadException, sameBeanAs(expectedException));
-       }
-       
-       @Test
-       public void asdcParametersExceptionThrowableTest() {
-               Throwable throwableCause = new Throwable(throwableMessage);
-               ASDCControllerException asdcDownloadException = new ASDCControllerException(exceptionMessage, throwableCause);
-               
-               Exception expectedException = new Exception(exceptionMessage, new Throwable(throwableMessage));
-               
-               assertThat(asdcDownloadException, sameBeanAs(expectedException));
-       }
+    private String exceptionMessage = "test message for exception";
+    private String throwableMessage = "separate throwable that caused asdcDownloadException";
+
+    @Test
+    public void asdcParametersExceptionTest() {
+        ASDCControllerException asdcDownloadException = new ASDCControllerException(exceptionMessage);
+
+        Exception expectedException = new Exception(exceptionMessage);
+
+        assertThat(asdcDownloadException, sameBeanAs(expectedException));
+    }
+
+    @Test
+    public void asdcParametersExceptionThrowableTest() {
+        Throwable throwableCause = new Throwable(throwableMessage);
+        ASDCControllerException asdcDownloadException = new ASDCControllerException(exceptionMessage, throwableCause);
+
+        Exception expectedException = new Exception(exceptionMessage, new Throwable(throwableMessage));
+
+        assertThat(asdcDownloadException, sameBeanAs(expectedException));
+    }
 }