You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Assert.True(File.Exists(actualFullPath),$"actualImagePath not found {actualFullPath}");
17
17
Assert.True(File.Exists(expectFullPath),$"ExpectReferenceImagePath not found \n{expectFullPath}\n copy over \n{actualFullPath}\n if this is a new test case.");
Assert.True(resultWithAllowedDiff.PixelErrorCount<=allowedPixelErrorCount,$"Expected PixelErrorCount beyond {allowedPixelErrorCount} but was {resultWithAllowedDiff.PixelErrorCount}\nExpected {expectFullPath}\ndiffers to actual {actualFullPath}\n{base64fyedActualImage}\n\n Diff is {newDiffImage}\n{base64fyedImageDiff}\n");
Assert.True(ImageSharpCompare.ImageAreEqual(actualFullPath,expectFullPath),$"Expected {expectFullPath}\ndiffers to actual {actualFullPath}\n{base64fyedActualImage}\n\n Diff is {newDiffImage}\n{base64fyedImageDiff}\n");
Assert.True(result.PixelErrorCount<=allowedPixelErrorCount,$"Expected PixelErrorCount beyond {allowedPixelErrorCount} but was {result.PixelErrorCount}\nExpected {expectFullPath}\ndiffers to actual {actualFullPath}\n{base64fyedActualImage}\n\n Diff is {newDiffImage}\n{base64fyedImageDiff}\nReplace {actualFullPath} with the new value or store the diff as {allowedDiffImage}.");
0 commit comments