chevron-thin-right chevron-thin-left brand cancel-circle search youtube-icon google-plus-icon linkedin-icon facebook-icon twitter-icon toolbox download check linkedin phone twitter-old google-plus facebook profile-male chat calendar profile-male
0 votes

Does Typemock support FsCheck? I know it supports Xunit and I am using the FsCheck.Xunit package. This gives me a Property attribute that inherits from Xunit's Fact attribute. However, my tests are not recognized by Typemock.

This is such a test for example:

[Property]

public void ReturnsTrueForValidEmail(MailAddress email)

{

    var validator = new EmailValidator();

    var result = validator.IsValidEmail(email.Address);

    Assert.True(result);
}

As you can see, the tests are not found:

 (https://www.typemock.com/answers/?qa=blob&qa_blobid=10236380428654178736)

Tools like ReSharper and the Visual Studio Test Explorer recognize the tests and run them fine.

asked by petermorlion (640 points)
edited by petermorlion

1 Answer

0 votes
Hi peter,

That\\\'s a great question.

We are checking the matter.

We will keep you posted.
answered by Alon_TypeMock (9k points)
...