Reinstate FailingBeforeAndAfterMethodsTestNGTests
The tests were ignored due to "Fails against TestNG 6.11"; however, these tests pass against the current version of TestNG that we build against (7.8.0).
This commit is contained in:
parent
2b3539a6de
commit
f9588de247
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2020 the original author or authors.
|
* Copyright 2002-2023 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -16,7 +16,6 @@
|
||||||
|
|
||||||
package org.springframework.test.context.junit4;
|
package org.springframework.test.context.junit4;
|
||||||
|
|
||||||
import org.junit.Ignore;
|
|
||||||
import org.junit.Test;
|
import org.junit.Test;
|
||||||
import org.junit.runner.RunWith;
|
import org.junit.runner.RunWith;
|
||||||
import org.junit.runners.Parameterized;
|
import org.junit.runners.Parameterized;
|
||||||
|
@ -92,8 +91,7 @@ public class FailingBeforeAndAfterMethodsTestNGTests {
|
||||||
|
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@Ignore("Fails against TestNG 6.11")
|
public void runTestAndAssertCounters() {
|
||||||
public void runTestAndAssertCounters() throws Exception {
|
|
||||||
TrackingTestNGTestListener listener = new TrackingTestNGTestListener();
|
TrackingTestNGTestListener listener = new TrackingTestNGTestListener();
|
||||||
TestNG testNG = new TestNG();
|
TestNG testNG = new TestNG();
|
||||||
testNG.addListener(listener);
|
testNG.addListener(listener);
|
||||||
|
|
Loading…
Reference in New Issue