0
mirror of https://github.com/sampletext32/ParkanPlayground.git synced 2025-06-19 16:08:02 +03:00

float handlers

This commit is contained in:
bird_egop
2025-04-18 02:37:19 +03:00
parent 18ecf31c46
commit e967c0e0c0
27 changed files with 646 additions and 776 deletions

View File

@ -38,7 +38,10 @@ public class InstructionHandlerFactoryTests
foreach (var handlerType in handlerTypes)
{
Assert.Contains(handlers, x => x.GetType() == handlerType);
if (handlers.All(x => x.GetType() != handlerType))
{
Assert.Fail($"{handlerType.Name} not found");
}
}
var uniqueRegisteredHandlers = new HashSet<string>();