Closed occupant23 closed 6 years ago
Steps to reproduce:
Wished behaviour would be the standard JUnit way.
package com.xceptance.tests; import org.junit.After; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import com.xceptance.neodymium.NeodymiumRunner; @RunWith(NeodymiumRunner.class) public class TStacktraces { @Test public void test() { Assert.assertTrue(false); } @After public void after() { Assert.assertFalse(true); } }
Fixed with commit https://github.com/Xceptance/neodymium-library/commit/57d16b34353e6deb00ff36652b921938233aadfd
works like a charm, thanks
Steps to reproduce:
Wished behaviour would be the standard JUnit way.