Author: onealj
Date: Sat Apr 15 03:19:27 2017
New Revision: 1791444
URL: http://svn.apache.org/viewvc?rev=1791444&view=rev
Log:
change from hamcrest-core-1.3 to hamcrest-all-1.3
Modified:
poi/trunk/build.xml
poi/trunk/src/testcases/org/apache/poi/POITestCase.java
Modified: poi/trunk/build.xml
URL:
http://svn.apache.org/viewvc/poi/trunk/build.xml?rev=1791444&r1=1791443&r2=1791444&view=diff
==============================================================================
--- poi/trunk/build.xml (original)
+++ poi/trunk/build.xml Sat Apr 15 03:19:27 2017
@@ -163,8 +163,8 @@ under the License.
<property name="main.log4j.url"
value="${repository.m2}/maven2/log4j/log4j/1.2.17/log4j-1.2.17.jar"/>
<property name="main.junit.jar" location="${main.lib}/junit-4.12.jar"/>
<property name="main.junit.url"
value="${repository.m2}/maven2/junit/junit/4.12/junit-4.12.jar"/>
- <property name="main.hamcrest.jar"
location="${main.lib}/hamcrest-core-1.3.jar"/>
- <property name="main.hamcrest.url"
value="${repository.m2}/maven2/org/hamcrest/hamcrest-core/1.3/hamcrest-core-1.3.jar"/>
+ <property name="main.hamcrest.jar"
location="${main.lib}/hamcrest-all-1.3.jar"/>
+ <property name="main.hamcrest.url"
value="${repository.m2}/maven2/org/hamcrest/hamcrest-all/1.3/hamcrest-all-1.3.jar"/>
<property name="main.ant.jar" location="${main.lib}/ant-1.9.4.jar"/>
<property name="main.ant.url"
value="${repository.m2}/maven2/org/apache/ant/ant/1.9.4/ant-1.9.4.jar"/>
<property name="main.antlauncher.jar"
location="${main.lib}/ant-launcher-1.9.4.jar"/>
@@ -567,6 +567,7 @@ under the License.
<include name="forbiddenapis-1.*.jar"/>
<include name="forbiddenapis-2.0.jar"/>
<include name="apache-rat-0.11.jar"/>
+ <include name="hamcrest-core-1.3.jar"/>
</fileset>
<fileset dir="${ooxml.lib}">
<!-- remove jars from previous versions, but not the current
version -->
Modified: poi/trunk/src/testcases/org/apache/poi/POITestCase.java
URL:
http://svn.apache.org/viewvc/poi/trunk/src/testcases/org/apache/poi/POITestCase.java?rev=1791444&r1=1791443&r2=1791444&view=diff
==============================================================================
--- poi/trunk/src/testcases/org/apache/poi/POITestCase.java (original)
+++ poi/trunk/src/testcases/org/apache/poi/POITestCase.java Sat Apr 15 03:19:27
2017
@@ -30,6 +30,10 @@ import static org.hamcrest.CoreMatchers.
import static org.hamcrest.CoreMatchers.startsWith;
import static org.hamcrest.CoreMatchers.endsWith;
import static org.hamcrest.CoreMatchers.not;
+import static org.hamcrest.Matchers.lessThan;
+import static org.hamcrest.Matchers.lessThanOrEqualTo;
+import static org.hamcrest.Matchers.greaterThan;
+import static org.hamcrest.Matchers.greaterThanOrEqualTo;
import java.lang.reflect.AccessibleObject;
import java.lang.reflect.Field;
@@ -57,6 +61,12 @@ public final class POITestCase {
assertThat(string, startsWith(prefix));
}
+ public static void assertStartsWith(String message, String string, String
prefix) {
+ assertNotNull(message, string);
+ assertNotNull(message, prefix);
+ assertThat(message, string, startsWith(prefix));
+ }
+
public static void assertEndsWith(String string, String suffix) {
assertNotNull(string);
assertNotNull(suffix);
@@ -69,6 +79,12 @@ public final class POITestCase {
assertThat(haystack, containsString(needle));
}
+ public static void assertContains(String message, String haystack, String
needle) {
+ assertNotNull(message, haystack);
+ assertNotNull(message, needle);
+ assertThat(message, haystack, containsString(needle));
+ }
+
public static void assertContainsIgnoreCase(String haystack, String
needle, Locale locale) {
assertNotNull(haystack);
assertNotNull(needle);
@@ -250,15 +266,11 @@ public final class POITestCase {
}
public static void assertBetween(String message, int value, int min, int
max) {
- assertTrue(message + ": " + value + " is less than the minimum value
of " + min,
- min <= value);
- assertTrue(message + ": " + value + " is greater than the maximum
value of " + max,
- value <= max);
+ assertThat(message, value, greaterThanOrEqualTo(min));
+ assertThat(message, value, lessThanOrEqualTo(max));
}
public static void assertStrictlyBetween(String message, int value, int
min, int max) {
- assertTrue(message + ": " + value + " is less than or equal to the
minimum value of " + min,
- min < value);
- assertTrue(message + ": " + value + " is greater than or equal to the
maximum value of " + max,
- value < max);
+ assertThat(message, value, greaterThan(min));
+ assertThat(message, value, lessThan(max));
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]