how to apply junit in this case

0

I have this code:

public void registraEntrada() {
        System.out.print("Digite o seu nome: ");
        String nome = sc.next();
        System.out.print("Digite seu CPF (apenas números): ");
        String cpf = sc.next();
        System.out.print("Digite sua idade: ");
        int idade = sc.nextInt();
        System.out.print("Digite o seu genero (H/M): ");
        String genero = sc.next();

        System.out.print("Deseja colocar no programa de milhagens (S/N)?: ");
        String resposta = sc.next();
        if (resposta.equalsIgnoreCase("s")) {
            System.out.print("Digite o número de sócio: ");
            int nroSocio = sc.nextInt();
            listaClientes.add(new Socio(nome, cpf, idade, genero, nroSocio));
            listaClientesSaida.add(new Socio(nome, cpf, idade, genero, nroSocio));
        } else {
            listaClientes.add(new Cliente(nome, cpf, idade, genero));
            listaClientesSaida.add(new Cliente(nome, cpf, idade, genero));
        }
        System.out.println("");
    }

How do I apply junit in this code and what tests can I do?

    
asked by anonymous 10.04.2018 / 18:39

0 answers