public async Task Sets_Error_to_NotFound_when_the_ID_does_not_exist()
        {
            var removeConnectionCommand = new RemoveConnectionCommand(999);
            await removeConnectionCommand.Process(virtualStudio);

            Assert.IsTrue(removeConnectionCommand.Error.Type == ErrorType.NotFound);
        }
        public async Task Removes_a_connection()
        {
            var removeConnectionCommand = new RemoveConnectionCommand(connection.Id);
            await removeConnectionCommand.Process(virtualStudio);

            Assert.IsTrue(virtualStudio.Connections.Count == 0);
        }