T type logging

This commit is contained in:
Alex
2025-01-15 15:06:54 +00:00
parent f9f108448a
commit 8b3305efca
100 changed files with 1229 additions and 761 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ namespace UnitTests.Tests.Utils;
[TestClass]
public class HashUtilTests
{
// private readonly HashUtil _hashUtil = new(new RandomUtil());
// protected HashUtil _hashUtil = new(new RandomUtil());
//
// [TestMethod]
// public void GenerateTest()
+1 -1
View File
@@ -6,7 +6,7 @@ namespace UnitTests.Tests.Utils;
[TestClass]
public class JsonUtilTests
{
private readonly JsonUtil _jsonUtil = new();
protected JsonUtil _jsonUtil = new();
[TestMethod]
public void SerializeAndDeserialize_WithDictionaryOfETFEnum_ExpectCorrectParsing()
{
+2 -2
View File
@@ -5,7 +5,7 @@ namespace UnitTests.Tests.Utils;
[TestClass]
public class MathUtilTests
{
private readonly MathUtil _mathUtil = new();
protected MathUtil _mathUtil = new();
[TestMethod]
public void ListSumTest()
@@ -80,4 +80,4 @@ public class MathUtilTests
Assert.AreEqual(expected, actual,
$"MapToRange() Expected: {expected}, Actual: {actual}");
}
}
}
+1 -1
View File
@@ -5,7 +5,7 @@ namespace UnitTests.Tests.Utils;
[TestClass]
public sealed class RandomUtilTests
{
// private readonly RandomUtil _randomUtil = new();
// protected RandomUtil _randomUtil = new();
//
// [TestMethod]
// public void GetIntTest()