When I add an error message to the assert function, on failure of the test step I am expecting that it should log failure message with the message given in the assert. However Test Studio doesn't log the assert error message into the log.
Sample code:
[CodedStep(@"Verify All Controls visibility is Visible", RequiresSilverlight = true)]
public void NetworkSettingsPage_Functionality_ControlVisibility()
{
// Verify EditButton's visibility is Visible
Assert.AreEqual(ArtOfTest.WebAii.Silverlight.UI.Visibility.Visible, Pages.PC5xxLogin.SilverlightApp.EditButton.ComputedVisibility, "Edit Button Element visibility does not match expected value");
}