Como hacer el test adecuado

Como hacer el test adecuado

by Juan Antonaccio -
Number of replies: 0

import java.util.Arrays;

import java.util.List;


public class Lista {


public static void main(String[] args) {

// tengo esta lista de enteros definida de esta forma

Integer[] arrayEnteros = {23, 1, 32, -4, 55,56,10,-43};

List<Integer> listaEnteros = Arrays.asList(arrayEnteros);

System.out.println(listaEnteros.indexOf(55));

}

}

Preciso hacer un test para verificar que se ingreso dentro del System.out.println, listaEnteros.indexOf(55) he tratado de varias formas y no puedo conseguir un test adecuado. Estoy usando el code runner como java_class, y el tema podria ser leer el codigo fuente y buscar en su interior que contenga ese texto. Si alguien me puede ayudar lo agradezco. Gracias