Commit d0698bd8 authored by Stephane Nicoll's avatar Stephane Nicoll

Remove unnecessary System.out in tests

parent 0bb0f32c
/* /*
* Copyright 2012-2013 the original author or authors. * Copyright 2012-2015 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
...@@ -164,9 +164,6 @@ public class EndpointMBeanExportAutoConfigurationTests { ...@@ -164,9 +164,6 @@ public class EndpointMBeanExportAutoConfigurationTests {
this.context.refresh(); this.context.refresh();
parent.close(); parent.close();
System.out.println("parent " + ObjectUtils.getIdentityHexString(parent));
System.out.println("child " + ObjectUtils.getIdentityHexString(this.context));
} }
private ObjectName getObjectName(String domain, String beanKey, private ObjectName getObjectName(String domain, String beanKey,
......
/* /*
* Copyright 2013-2014 the original author or authors. * Copyright 2012-2015 the original author or authors.
* *
* Licensed under the Apache License, Version 2.0 (the "License"); * Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License. * you may not use this file except in compliance with the License.
...@@ -159,7 +159,6 @@ public class ConfigurationPropertiesReportEndpointTests extends ...@@ -159,7 +159,6 @@ public class ConfigurationPropertiesReportEndpointTests extends
Map<String, Object> properties = report.invoke(); Map<String, Object> properties = report.invoke();
Map<String, Object> nestedProperties = (Map<String, Object>) ((Map<String, Object>) properties Map<String, Object> nestedProperties = (Map<String, Object>) ((Map<String, Object>) properties
.get("testProperties")).get("properties"); .get("testProperties")).get("properties");
System.out.println(nestedProperties);
assertThat(nestedProperties.get("mixedBoolean"), equalTo((Object) true)); assertThat(nestedProperties.get("mixedBoolean"), equalTo((Object) true));
} }
......
...@@ -223,7 +223,6 @@ public class ConditionEvaluationReportTests { ...@@ -223,7 +223,6 @@ public class ConditionEvaluationReportTests {
List<String> messages = new ArrayList<String>(); List<String> messages = new ArrayList<String>();
for (ConditionAndOutcome outcome : outcomes) { for (ConditionAndOutcome outcome : outcomes) {
messages.add(outcome.getOutcome().getMessage()); messages.add(outcome.getOutcome().getMessage());
System.out.println(outcome.getOutcome().getMessage());
} }
Matcher<String> onClassMessage = containsString("@ConditionalOnClass " Matcher<String> onClassMessage = containsString("@ConditionalOnClass "
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment