Skip to content

Commit 9a85eff

Browse files
committed
upgrade testng jar to latest version
1 parent 643d299 commit 9a85eff

File tree

6 files changed

+5
-4
lines changed

6 files changed

+5
-4
lines changed

.classpath

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
<classpathentry kind="src" path="build/temp/hamcrest-library/generated-code"/>
1111
<classpathentry kind="lib" path="lib/integration/easymock-2.2.jar"/>
1212
<classpathentry kind="lib" path="lib/integration/jmock-1.10RC1.jar"/>
13-
<classpathentry kind="lib" path="lib/integration/testng-4.6-jdk15.jar" sourcepath="lib/sources/qdox-1.12-sources.jar"/>
13+
<classpathentry kind="lib" path="lib/generator/qdox-1.12.jar" sourcepath="lib/sources/qdox-1.12-sources.jar"/>
14+
<classpathentry kind="lib" path="lib/integration/testng-6.5.2.jar" sourcepath="lib/sources/testng-6.5.2-sources.jar"/>
1415
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
1516
<classpathentry kind="lib" path="lib/integration/junit-dep-4.10.jar"/>
1617
<classpathentry kind="output" path="classes"/>

.idea/libraries/integration.xml

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

hamcrest-examples/src/main/java/org/hamcrest/examples/testng/ExampleWithEasyMock2.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
import static org.easymock.EasyMock.verify;
77
import static org.hamcrest.EasyMock2Matchers.equalTo;
88

9-
import org.testng.annotations.Configuration;
9+
import org.testng.annotations.BeforeMethod;
1010
import org.testng.annotations.Test;
1111

1212
/**
@@ -45,7 +45,7 @@ public static interface AnInterface {
4545

4646
private AnInterface mock;
4747

48-
@Configuration(beforeTestMethod = true)
48+
@BeforeMethod
4949
public void setUpMock() {
5050
mock = createMock(AnInterface.class);
5151
}

lib/integration/testng-4.6-jdk15.jar

-648 KB
Binary file not shown.

lib/integration/testng-6.5.2.jar

700 KB
Binary file not shown.

lib/sources/testng-6.5.2-sources.jar

449 KB
Binary file not shown.

0 commit comments

Comments
 (0)