|
1 |
| -/** |
| 1 | +/* |
2 | 2 | * Copyright 2016 Google Inc. All Rights Reserved.
|
3 | 3 | *
|
4 |
| - * <p>Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
5 | 5 | * you may not use this file except in compliance with the License.
|
6 | 6 | * You may obtain a copy of the License at
|
7 | 7 | *
|
8 |
| - * <p>http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | + * http://www.apache.org/licenses/LICENSE-2.0 |
9 | 9 | *
|
10 |
| - * <p>Unless required by applicable law or agreed to in writing, software |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
11 | 11 | * distributed under the License is distributed on an "AS IS" BASIS,
|
12 | 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13 | 13 | * See the License for the specific language governing permissions and
|
14 | 14 | * limitations under the License.
|
15 | 15 | */
|
| 16 | + |
16 | 17 | package com.example.appengine.appidentity;
|
17 | 18 |
|
18 | 19 | import static com.google.common.truth.Truth.assertThat;
|
19 | 20 | import static org.mockito.Mockito.when;
|
20 | 21 |
|
21 | 22 | import com.google.appengine.tools.development.testing.LocalServiceTestHelper;
|
22 |
| -import org.mockito.Mock; |
23 |
| -import org.mockito.MockitoAnnotations; |
| 23 | + |
24 | 24 | import org.junit.After;
|
25 | 25 | import org.junit.Before;
|
26 | 26 | import org.junit.Test;
|
27 | 27 | import org.junit.runner.RunWith;
|
28 | 28 | import org.junit.runners.JUnit4;
|
| 29 | +import org.mockito.Mock; |
| 30 | +import org.mockito.MockitoAnnotations; |
29 | 31 |
|
30 | 32 | import java.io.PrintWriter;
|
31 | 33 | import java.io.StringWriter;
|
32 | 34 |
|
33 | 35 | import javax.servlet.http.HttpServletRequest;
|
34 | 36 | import javax.servlet.http.HttpServletResponse;
|
35 | 37 |
|
36 |
| -/** Unit tests for {@link SignForAppServlet}. */ |
| 38 | +/** |
| 39 | + * Unit tests for {@link SignForAppServlet}. |
| 40 | + */ |
37 | 41 | @RunWith(JUnit4.class)
|
38 | 42 | public class SignForAppServletTest {
|
39 | 43 |
|
|
0 commit comments