added new stuff! :D
This commit is contained in:
@@ -1,11 +1,13 @@
|
||||
using Core.Utils;
|
||||
using Core.Utils.Cloners;
|
||||
using UnitTests.Mock;
|
||||
|
||||
namespace UnitTests.Tests.Utils;
|
||||
|
||||
[TestClass]
|
||||
public class HashUtilTests
|
||||
{
|
||||
protected HashUtil _hashUtil = new(new RandomUtil());
|
||||
protected HashUtil _hashUtil = new(new RandomUtil(new MockLogger<RandomUtil>(), new JsonCloner(new JsonUtil())));
|
||||
|
||||
[TestMethod]
|
||||
public void GenerateTest()
|
||||
|
||||
@@ -1,11 +1,13 @@
|
||||
using Core.Utils;
|
||||
using Core.Utils.Cloners;
|
||||
using UnitTests.Mock;
|
||||
|
||||
namespace UnitTests.Tests.Utils;
|
||||
|
||||
[TestClass]
|
||||
public sealed class RandomUtilTests
|
||||
{
|
||||
private RandomUtil _randomUtil = new();
|
||||
private RandomUtil _randomUtil = new(new MockLogger<RandomUtil>(), new JsonCloner(new JsonUtil()));
|
||||
|
||||
[TestMethod]
|
||||
public void GetIntTest()
|
||||
|
||||
Reference in New Issue
Block a user