We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have a following tests that passes with "UnitTestEx.Xunit" Version="2.1.1"
"UnitTestEx.Xunit" Version="2.1.1"
// Arrange using var test = CreateApiTester<Startup>(); // Act var result = test .Controller<SampleController>() .Run(c => c.Get("thisIsATest")) .AssertOK() .AssertJson("{\"data\": \"this_is_a_test\"}");
but this also passes and shouldn't
// Act var result = test .Controller<SampleController>() .Run(c => c.Get("thisIsATest")) .AssertOK() .Assert(new { foo="bar"});
The text was updated successfully, but these errors were encountered:
Resolve issues #51 and #52.
1dbccae
Resolve issues #51 and #52. (#53)
5f81acd
* Resolve issues #51 and #52. * Fix value expectations test, * Update log output for test troubleshooting * Adjust delay check for NUnit
Published NuGet package v2.1.2.
Sorry, something went wrong.
fix worked
No branches or pull requests
I have a following tests that passes with
"UnitTestEx.Xunit" Version="2.1.1"
but this also passes and shouldn't
The text was updated successfully, but these errors were encountered: