250501 커밋

This commit is contained in:
2025-05-01 07:23:28 +09:00
parent 98bb2e3c5c
commit 23176551b7
353 changed files with 9972 additions and 6652 deletions

View File

@@ -1,20 +1,8 @@
using BrokerCore.Common;
using Microsoft.Extensions.Logging;
namespace BrokerTest.Etc;
using BrokerApiCore;
namespace BrokerTest;
public class SecurityKeyTests
{
// Constructor
// public SecurityKeyTests(ILogger<SecurityKeyTests> logger)
// {
// this.m_logger = logger;
// }
//
// private readonly ILogger<SecurityKeyTests> m_logger;
// Test method to check if the security key is generated correctly
[Fact]
public void testSecurityKeyGeneration()
{
@@ -23,13 +11,4 @@ public class SecurityKeyTests
Assert.NotNull(result_hex);
Assert.NotEmpty(result_base64);
}
//
// // Test method to check if the security key is valid
// [Fact]
// public void testSecurityKey()
// {
// var result_key = Helpers.generateSecureKey();
// Assert.NotNull(result_key);
// Assert.NotEmpty(result_key);
// }
}