public void RegisterTest()
        {
            AgentInfoRequestDto agentInfo = new()
            {
                Id      = Guid.NewGuid().ToString(),
                Address = new Uri("http://localhost:26844/api/hdd")
            };

            var result = _controller.Register(agentInfo);

            _ = Assert.IsAssignableFrom <IActionResult>(result);
        }