Giter VIP home page Giter VIP logo

Comments (7)

Serg046 avatar Serg046 commented on July 4, 2024

I am not an owner but let me try to understand the issue.
I believe this line throws an exception. The line is inside DeserializeSerializable method which is most probably called from here. It means WpfTheoryTestCase and other test cases should contain parameterless constructor. Also there is some helpful comment inside the base XunitTheoryTestCase class. Its parameterless constructor is marked by ObsoleteAttribute:

[Obsolete("Called by the de-serializer; should only be called by deriving classes for de-serialization purposes")]
public XunitTheoryTestCase();

Of course, we can just add parameterless constructor for all test cases but it would be better to understand your case. Could you describe it and help to reproduce?

from xunit.stafact.

Serg046 avatar Serg046 commented on July 4, 2024

Can be related xunit/xunit#1742

from xunit.stafact.

AArnott avatar AArnott commented on July 4, 2024

Adding the default constructor to this type is fine. But can you please give me the repro steps so I can verify the problem and the fix?

from xunit.stafact.

GerardHindiye avatar GerardHindiye commented on July 4, 2024

In my case, it was a test case that contains an STA thread and we are doing the test case as follows:

    [WpfTheory]
    [MemberData(nameof(TestData))]
    public void Test(DateTime outDate, DateTime nowDate, bool 
       expectedResult)
    {
       //Test case logic
    }


    public static IEnumerable<object[]> TestData
    {
        get
        {
            yield return new object[] { DateTime.Now, DateTime.Now.AddMinutes(2), true };
            yield return new object[] { DateTime.Now, DateTime.Now.AddMinutes(-3), false };
            yield return new object[] { DateTime.Now, DateTime.Now, false };
        }
    }

from xunit.stafact.

AArnott avatar AArnott commented on July 4, 2024

And how do you run this test where it fails? I just tried VS 2019 Test Explorer and xunit.console and the 3 test cases all ran for me.

from xunit.stafact.

GerardHindiye avatar GerardHindiye commented on July 4, 2024

Since it has been like 6 months after i faced the issue, we have moved away from using StaFact library. And we fixed the tests using another approach. So I am trying to reproduce it but i am unable to do so.

from xunit.stafact.

AArnott avatar AArnott commented on July 4, 2024

OK, thanks for following up. I'll close this since we have no repro then.

from xunit.stafact.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.