anshooarora / extentreports-csharp

Community version of Extent API for .NET has moved to https://github.com/extent-framework/
http://extentreports.com/
Other
47 stars 43 forks source link

Assert.Pass("This test case passed") - step is shown as failed in the report. #120

Open ameettshelar opened 6 years ago

ameettshelar commented 6 years ago

I am using Nunit Framework.

I have written one - Assert.Pass("This test case passed") - This step is shown as failed in the report and the test is failed.

if (chkpt) { Assert.Pass("All check points are passed"); } else { Assert.Fail("Check points are failed"); }

capture