Написан фронтенд модуль json сериализации, mock модуль исполнения и тесты для потокового режима работы

This commit is contained in:
2025-02-01 13:40:06 +03:00
parent 99c938fb48
commit 7fdff923a3
4 changed files with 65 additions and 2 deletions
+28
View File
@@ -0,0 +1,28 @@
using mROA.Implementation;
namespace mROA.Test;
public class StreamTest
{
private StreamBasedInteractionModule _interactionModule;
private ISerialisationModule _serialisationModule;
private IExecuteModule _executeModule;
private IMethodRepository _methodRepository;
private IContextRepository _contextRepository;
[SetUp]
public void Setup()
{
_interactionModule = new StreamBasedInteractionModule();
_serialisationModule = new JsonSerialisationModule(_interactionModule, _methodRepository);
_executeModule = new MockExecModule();
_serialisationModule.SetExecuteModule(_executeModule);
}
[Test]
public void StreamingTest()
{
}
}