Merge "AAFcli.java -Declare "value" on a separate line"
[aaf/authz.git] / cadi / core / src / test / java / org / onap / aaf / cadi / principal / test / JU_OAuth2FormPrincipal.java
index c0b1c2a..6ca74e2 100644 (file)
@@ -7,9 +7,9 @@
  * * Licensed 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.
@@ -30,27 +30,27 @@ import org.onap.aaf.cadi.principal.OAuth2FormPrincipal;
 
 public class JU_OAuth2FormPrincipal {
 
-       private String username = "user";
-       private String id = "id";
+    private String username = "user";
+    private String id = "id";
 
-       @Test
-       public void accessorsTest() {
-               OAuth2FormPrincipal oauth = new OAuth2FormPrincipal(id, username);
-               assertThat(oauth.getName(), is(username));
-               assertThat(oauth.client_id(), is(id));
-               assertThat(oauth.tag(), is("OAuth"));
-       }
+    @Test
+    public void accessorsTest() {
+        OAuth2FormPrincipal oauth = new OAuth2FormPrincipal(id, username);
+        assertThat(oauth.getName(), is(username));
+        assertThat(oauth.client_id(), is(id));
+        assertThat(oauth.tag(), is("OAuth"));
+    }
 
-       @Test
-       public void personalNameTest() {
-               OAuth2FormPrincipal oauth = new OAuth2FormPrincipal(id, username);
-               assertThat(oauth.personalName(), is(username + "|" + id));
+    @Test
+    public void personalNameTest() {
+        OAuth2FormPrincipal oauth = new OAuth2FormPrincipal(id, username);
+        assertThat(oauth.personalName(), is(username + "|" + id));
 
-               oauth = new OAuth2FormPrincipal(id, null);
-               assertThat(oauth.personalName(), is(id));
+        oauth = new OAuth2FormPrincipal(id, null);
+        assertThat(oauth.personalName(), is(id));
 
-               oauth = new OAuth2FormPrincipal(id, id);
-               assertThat(oauth.personalName(), is(id));
-       }
+        oauth = new OAuth2FormPrincipal(id, id);
+        assertThat(oauth.personalName(), is(id));
+    }
 
 }