You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[LoggerMessage(EventId=505,Level=LogLevel.Information,Message="Export task completed with {failedCount} failures out of {fileCount}. Time to export: {durationMilliseconds}ms.")]
@@ -50,6 +51,7 @@ public void RegisteredPlugIns_WhenCalled_ReturnsListOfPlugIns()
50
51
varresult=factory.RegisteredPlugIns();
51
52
52
53
Assert.Collection(result,
54
+
p =>VerifyPlugIn(p,typeof(DicomReidentifier)),
53
55
p =>VerifyPlugIn(p,typeof(TestInputDataPlugInAddWorkflow)),
54
56
p =>VerifyPlugIn(p,typeof(TestInputDataPlugInResumeWorkflow)),
55
57
p =>VerifyPlugIn(p,typeof(TestInputDataPlugInModifyDicomFile)),
@@ -59,6 +61,7 @@ public void RegisteredPlugIns_WhenCalled_ReturnsListOfPlugIns()
59
61
_logger.VerifyLogging($"{typeof(IInputDataPlugIn).Name} data plug-in found {typeof(TestInputDataPlugInResumeWorkflow).GetCustomAttribute<PlugInNameAttribute>()?.Name}: {typeof(TestInputDataPlugInResumeWorkflow).GetShortTypeAssemblyName()}.",LogLevel.Information,Times.Once());
60
62
_logger.VerifyLogging($"{typeof(IInputDataPlugIn).Name} data plug-in found {typeof(TestInputDataPlugInModifyDicomFile).GetCustomAttribute<PlugInNameAttribute>()?.Name}: {typeof(TestInputDataPlugInModifyDicomFile).GetShortTypeAssemblyName()}.",LogLevel.Information,Times.Once());
61
63
_logger.VerifyLogging($"{typeof(IInputDataPlugIn).Name} data plug-in found {typeof(TestInputDataPlugInVirtualAE).GetCustomAttribute<PlugInNameAttribute>()?.Name}: {typeof(TestInputDataPlugInVirtualAE).GetShortTypeAssemblyName()}.",LogLevel.Information,Times.Once());
64
+
_logger.VerifyLogging($"{typeof(IInputDataPlugIn).Name} data plug-in found {typeof(DicomReidentifier).GetCustomAttribute<PlugInNameAttribute>()?.Name}: {typeof(DicomReidentifier).GetShortTypeAssemblyName()}.",LogLevel.Information,Times.Once());
@@ -50,12 +51,14 @@ public void RegisteredPlugIns_WhenCalled_ReturnsListOfPlugIns()
50
51
varresult=factory.RegisteredPlugIns();
51
52
52
53
Assert.Collection(result,
54
+
p =>VerifyPlugIn(p,typeof(DicomDeidentifier)),
53
55
p =>VerifyPlugIn(p,typeof(TestOutputDataPlugInAddMessage)),
54
56
p =>VerifyPlugIn(p,typeof(TestOutputDataPlugInModifyDicomFile))
55
57
);
56
58
57
59
_logger.VerifyLogging($"{typeof(IOutputDataPlugIn).Name} data plug-in found {typeof(TestOutputDataPlugInAddMessage).GetCustomAttribute<PlugInNameAttribute>()?.Name}: {typeof(TestOutputDataPlugInAddMessage).GetShortTypeAssemblyName()}.",LogLevel.Information,Times.Once());
58
60
_logger.VerifyLogging($"{typeof(IOutputDataPlugIn).Name} data plug-in found {typeof(TestOutputDataPlugInModifyDicomFile).GetCustomAttribute<PlugInNameAttribute>()?.Name}: {typeof(TestOutputDataPlugInModifyDicomFile).GetShortTypeAssemblyName()}.",LogLevel.Information,Times.Once());
61
+
_logger.VerifyLogging($"{typeof(IOutputDataPlugIn).Name} data plug-in found {typeof(DicomDeidentifier).GetCustomAttribute<PlugInNameAttribute>()?.Name}: {typeof(DicomDeidentifier).GetShortTypeAssemblyName()}.",LogLevel.Information,Times.Once());
0 commit comments