refactor(dotnet): externalize scheduler definitions
Validators (Pushes and Pull Requests) / validate-ui-and-storage (push) Successful in 16s
Validators (Pushes and Pull Requests) / validate-core (push) Has been cancelled

This commit is contained in:
2026-07-13 00:39:59 +09:00
parent 3fbb5ea2bf
commit c852ad49cf
4 changed files with 24 additions and 10 deletions
@@ -4,6 +4,7 @@ using System.Reflection;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Options;
using Hangfire;
using Hangfire.Common;
using QuantEngine.Web.Services;
@@ -33,7 +34,8 @@ public class SchedulerServiceTests
recurringJobManagerMock.Object,
scopeFactoryMock.Object,
configMock.Object,
parser
parser,
Options.Create(new SchedulerServiceOptions())
);
// Act
@@ -198,7 +200,8 @@ public class SchedulerServiceTests
recurringJobManagerMock.Object,
scopeFactoryMock.Object,
configMock.Object,
new GatherTradingDataParser()
new GatherTradingDataParser(),
Options.Create(new SchedulerServiceOptions())
);
}