All tests were changed due to Nunit lib changing

This commit is contained in:
Evgeny Redikultsev
2024-12-18 22:16:50 +05:00
parent 0538c6b53c
commit a14433f3cb
43 changed files with 206 additions and 174 deletions

View File

@@ -30,7 +30,7 @@ namespace StructureHelperTests.UnitTests.Ndms.Cracks
//Act
var width = logic.GetCrackWidth();
//Assert
Assert.AreEqual(expectedWidth, width, 0.000001d);
Assert.That(width, Is.EqualTo(expectedWidth).Within(0.000001d));
}
}