Show what we could not test

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1395961 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2012-10-09 10:52:27 +00:00
parent de34665f51
commit f381f00df8
1 changed files with 2 additions and 2 deletions

View File

@ -149,7 +149,7 @@ public class SystemUtilsTest {
assertTrue(SystemUtils.IS_JAVA_1_6); assertTrue(SystemUtils.IS_JAVA_1_6);
assertFalse(SystemUtils.IS_JAVA_1_7); assertFalse(SystemUtils.IS_JAVA_1_7);
} else { } else {
System.out.println("Can't test IS_JAVA value"); System.out.println("Can't test IS_JAVA value: "+javaVersion);
} }
} }
@ -186,7 +186,7 @@ public class SystemUtilsTest {
assertTrue(SystemUtils.IS_OS_UNIX); assertTrue(SystemUtils.IS_OS_UNIX);
assertFalse(SystemUtils.IS_OS_WINDOWS); assertFalse(SystemUtils.IS_OS_WINDOWS);
} else { } else {
System.out.println("Can't test IS_OS value"); System.out.println("Can't test IS_OS value: "+osName);
} }
} }