public void It_should_build_fileZilla_arguments()
        {
            const string expected =
                "sftp://*****:*****@localhost1:23";
            var connection = CreateConnectionInfo(0, 0);

            var actual = ArgumentsBuilder.BuildFileZillaArguments(connection);

            actual.Should().Be.EqualTo(expected);
        }