Skip to content

Commit

Permalink
#1107 Update TestNG to 7.8.0
Browse files Browse the repository at this point in the history
* update version from 6.9.10 to 7.8.0
* adjust implementation
* remove deprecated ExamTestNGListener
  • Loading branch information
oliverlietz committed Oct 17, 2023
1 parent 518d7b2 commit 7be9623
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 31 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,14 @@
public class ReactorTestNGMethod extends ClonedMethod {

private static final long serialVersionUID = 1L;

private Method method;

private TestAddress address;

public ReactorTestNGMethod(ITestNGMethod method, Method javaMethod, TestAddress address) {
super(method, javaMethod);
this.method = javaMethod;
this.address = address;
}

Expand All @@ -41,7 +45,7 @@ public String getMethodName() {

@Override
public ConstructorOrMethod getConstructorOrMethod() {
return new ConstructorOrMethod(getMethod());
return new ConstructorOrMethod(method);
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion pom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

<dependency.maven.version>3.0.5</dependency.maven.version>
<dependency.spring.version>5.3.30</dependency.spring.version>
<dependency.testng.version>6.9.10</dependency.testng.version>
<dependency.testng.version>7.8.0</dependency.testng.version>
<dependency.org.apache.servicemix.bundles.hamcrest.version>1.3_1</dependency.org.apache.servicemix.bundles.hamcrest.version>
<dependency.org.apache.servicemix.bundles.junit.version>4.13.2_1</dependency.org.apache.servicemix.bundles.junit.version>
<dependency.tomcat.version>9.0.81</dependency.tomcat.version>
Expand Down

0 comments on commit 7be9623

Please sign in to comment.