Skip to content

Commit

Permalink
Polishing
Browse files Browse the repository at this point in the history
  • Loading branch information
jhoeller committed Apr 11, 2016
1 parent 537193a commit b6f1afd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
Expand Up @@ -36,6 +36,7 @@ public class AnnotationMetadataAssemblerTests extends AbstractMetadataAssemblerT

private static final String OBJECT_NAME = "bean:name=testBean4";


@Test
public void testAttributeFromInterface() throws Exception {
ModelMBeanInfo inf = getMBeanInfoFromAssembler();
Expand Down
Expand Up @@ -89,6 +89,7 @@ protected WebClient modifyWebClientInternal(WebClient webClient) {

/**
* Return the current {@link WebClient}.
* @since 4.3
*/
public WebClient getWebClient() {
return this.webClient;
Expand Down
Expand Up @@ -49,10 +49,10 @@ public class MockWebResponseBuilderTests {
@Before
public void setUp() throws Exception {
this.webRequest = new WebRequest(new URL("http://example.com:80/test/this/here"));

this.responseBuilder = new MockWebResponseBuilder(System.currentTimeMillis(), this.webRequest, this.response);
}


// --- constructor

@Test(expected = IllegalArgumentException.class)
Expand All @@ -65,6 +65,7 @@ public void constructorWithNullResponse() throws Exception {
new MockWebResponseBuilder(0L, new WebRequest(new URL("http://example.com:80/test/this/here")), null);
}


// --- build

@Test
Expand Down

0 comments on commit b6f1afd

Please sign in to comment.