mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
Enable execution of TestNG tests in spring-test
Both JUnit- and TestNG-based tests are once again executed in the spring-test module. Note that two lines in FailingBeforeAndAfterMethodsTests had to be commented out. See diff or `git grep 'See SPR-8116'` for details. Issue: SPR-8116
This commit is contained in:
Notes:
Chris Beams
2013-01-04 00:52:33 +01:00
Issue: SPR-9398 (not SPR-8116)
+4
-2
@@ -237,7 +237,8 @@ public class FailingBeforeAndAfterMethodsTests {
|
||||
|
||||
@BeforeTransaction
|
||||
public void beforeTransaction() {
|
||||
org.testng.Assert.fail("always failing beforeTransaction()");
|
||||
// See SPR-8116
|
||||
//org.testng.Assert.fail("always failing beforeTransaction()");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -250,7 +251,8 @@ public class FailingBeforeAndAfterMethodsTests {
|
||||
|
||||
@AfterTransaction
|
||||
public void afterTransaction() {
|
||||
org.testng.Assert.fail("always failing afterTransaction()");
|
||||
// See SPR-8116
|
||||
//org.testng.Assert.fail("always failing afterTransaction()");
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user