Xceptance / neodymium-example

A pure Java test automation demo suite utilizing the Neodymium Library.
MIT License
10 stars 8 forks source link

Stacktraces differ to standard JUnit #1

Closed occupant23 closed 6 years ago

occupant23 commented 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);
    }
}
marcuskaufmann commented 6 years ago

Fixed with commit https://github.com/Xceptance/neodymium-library/commit/57d16b34353e6deb00ff36652b921938233aadfd

occupant23 commented 6 years ago

works like a charm, thanks